DIY: Regular Expression Matching
Understand how to implement a regular expression matcher in Elixir that supports '.' as any character and '*' as zero or more of the preceding element. This lesson helps you solve common pattern matching problems, preparing you for related coding interview questions with practical algorithm skills.
We'll cover the following...
We'll cover the following...
Problem statement
Suppose you are given an input string s and a pattern p. You have to implement regular expression matching with support for “.” and “*” where:
'.'can match any single