DIY: Wildcard Matching
Explore how to implement wildcard matching in Elixir using patterns with ? and *. Understand how to match entire strings by handling single or multiple character wildcards, applying these skills to solve common coding interview challenges effectively.
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: