Leetcode 76. Minimum Window Substring
sliding window: find a window that contains all the characters in t, then reduce the window by moving start pointer but still contains all the characters.
class Solution:
def minWindow(self, s, t)...
原创
2018-12-29 06:10:35 ·
116 阅读 ·
0 评论