Hard
Given an input string s and a pattern p, return true if p matches the entire s. The pattern supports '?' (matches any single character) and '*' (matches any sequence of characters, including the empty sequence).
Input: s = "aa", p = "a" Output: false
Input: s = "aa", p = "*" Output: true
Input: s = "cb", p = "?a" Output: false