Recent Posts

76 Minimum Window Substring

less than 1 minute read

my solution ```python def minWindow(self, s: str, t: str) -> str: req = collections.Counter(t) wnd = collections.defaultdict(int) ...

406 Queue Reconstruction by Height

less than 1 minute read

problem definition people[i] = 11(hi, ki) where hi is height of ith person ki is number of people in front ith person