Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 303 Bytes

File metadata and controls

17 lines (12 loc) · 303 Bytes

Problem 9: Wildcard Matching

Problem Statement

Implement wildcard pattern matching with '?' and '*' support.

Input Format

  • A string s and pattern p.

Output Format

  • A boolean.

Constraints

  • 0 <= len(s), len(p) <= 2000

Example

Input: s="adceb", p="ab"
Output: True