MCPcopy Create free account
hub / github.com/Sugapriyan-P-K/blind75 / minimumSubstring.py

File minimumSubstring.py

String/53minimumWindowSubstring/minimumSubstring.py:None–None  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1# minimum window substring leetcode hard 76
2class Solution:
3 def minWindow(self, s: str, t: str) -> str:
4 if t == "": return ""

Callers

nothing calls this directly

Calls 2

SolutionClass · 0.70
minWindowMethod · 0.45

Tested by

no test coverage detected