76 Minimum Window Substring
my solution ```python def minWindow(self, s: str, t: str) -> str: req = collections.Counter(t) wnd = collections.defaultdict(int) ...
my solution ```python def minWindow(self, s: str, t: str) -> str: req = collections.Counter(t) wnd = collections.defaultdict(int) ...
problem definition
my solution ```python def characterReplacement(self, s: str, k: int) -> int: if not s: return 0
problem definition people[i] = 11(hi, ki) where hi is height of ith person ki is number of people in front ith person
problem definition