Given a string,
find the index of a substring with a wildcard, *,
meaning zero or more characters
inputs:
match(abcdef, a*d*f) => 0
Given a string,
find the index of a substring with a wildcard, *,
meaning zero or more characters
inputs:
match(abcdef, a*d*f) => 0