eBay | Phone screen | Find Words That Match a Pattern
Anonymous User
2655

Given a dictionary of words find all words that match a pattern.
pattern types

  • exact match: input = get, output = get
  • any char match: input = g?t, output = get, got, gut
  • any no. of char match: input = g*t, output = get, got, gut, goat, guilt

Result: Rejected

Comments (3)