Daily challenge for 2025-02-14
45. Regular Expression Matching
Write a function solve that implements regular expression matching with support for '.' and '*'. '.' matches any single character, '*' matches zero or more of the preceding element.
Example:Input: "aa", "a*"Output: True
Run this challenge interactively in Python or JavaScript when the app loads.