Regex Pattern Matcher
exact_matchExpert
stringrecursiondp
Description
Build regex from scratch (no re module). Support . * + ? [abc] [a-z] [^abc]. Input: {"string":str,"pattern":str} Output: boolean
Input Specification
JSON with string and pattern
Output Specification
Boolean
Starter Code
def solve(input):
pass