Community Problem

Wildcard Matching

Difficulty: Hard

Match a string against a wildcard pattern with `?` (any single char) and `*` (any sequence) using O(m*n) 2D DP.

Wildcard Matching

Match a string against a wildcard pattern with `?` (any single char) and `*` (any sequence) using O(m*n) 2D DP.

HARD
$8.99
dynamic-programming
strings
two-pointers
rajreeves

By @rajreeves

December 22, 2025

·

Updated May 18, 2026

957 views

24

Rate

Problem statement is locked. Purchase this item to view the full content.

Solution

Starter code, test cases, and solutions are locked.

Purchase this item to access the full workspace.

All Problems