Same as above (regex with `.` and `*`).
Two lines: string s, then pattern p.
"true" or "false".
Example 1:
Input:
s = "aa" p = ".*"
Output:
true
Explanation:
".*" matches any string.