LeetCode HARD 44 Wildcard Matching Summary
Generated by Codex with GPT-5
Quick facts
- Difficulty:
HARD - Problem: Wildcard Matching
- Main tags:
String,Dynamic Programming,Greedy
What the problem is really asking
The pattern contains two special characters:
?matches exactly one character*matches any sequence of characters, including the empty sequence
The match must cover the entire string. That is the part that makes the problem interesting.
Continue ...