Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Wildcard Substring Index

MediumPython00:00
Practice interviewer
In session
5 left
00:00

Your question is Wildcard Substring Index. Start with the requirements on the right.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.

Problem

Simon AI receives event names from its product surfaces and needs to locate the first event name matching a partially specified pattern. Given a text string and a pattern containing exactly one ? wildcard, return the lowest index where the pattern matches. The wildcard matches exactly one arbitrary character.

A match must use consecutive characters in text. Return -1 if no match exists.

Formal Specification

Implement find_substring(text, pattern):

  • text is a string.
  • pattern is a non-empty string containing exactly one ?.
  • Every pattern character other than ? must match the corresponding text character exactly.
  • Return an integer start index, using zero-based indexing.

For an efficient solution, avoid checking every complete candidate substring character by character. Use string-search techniques to locate the fixed prefix and suffix around the wildcard.

Constraints

  • 1 <= len(text) <= 10^5
  • 2 <= len(pattern) <= 10^4
  • pattern contains exactly one ?
  • ? matches exactly one character
  • Matching is case-sensitive

Function Signature

def find_substring(text, pattern):
Your solutionPython 3
You need to log in / sign up to run or submit.
Run your code to see test output