Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/codedecks-in/LeetCode-Solutions
/ isMatch
Method
isMatch
Python/wildcard-matching.py:39–40 ·
view source on GitHub ↗
(self, s: str, p: str)
Source
from the content-addressed store, hash-verified
37
return
res
38
39
def
isMatch(self, s: str, p: str) -> bool:
40
return
self.helper(s,p,0,0,{})
41
42
43
#METHOD 2 -> Tabulation
Callers
nothing calls this directly
Calls
1
helper
Method · 0.95
Tested by
no test coverage detected