DIY: Wildcard Matching
Explore how to implement a wildcard matching function to check if an input string fully matches a pattern containing ? and * wildcards. Understand how these symbols represent single or multiple characters, and develop an algorithm to return true or false based on the match. This lesson helps you master pattern matching techniques applicable in coding interviews.
We'll cover the following...
We'll cover the following...
Problem statement
You will be given an input string s and a pattern p. You will have to implement wildcard pattern matching with support for ? and * where:
?