You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: leetcode/README.md
-2Lines changed: 0 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -525,5 +525,3 @@ h[n] = 2 * sum( h[i] * h[n-i] ) (1<= i < n )
525
525
* [Minimum Window Substring](https://oj.leetcode.com/problems/minimum-window-substring/) 字符串滑动窗口, 维护4个变量: left 左端点 ; right 右端点 ; cur[256] 各字符当前窗口内的计数值; curlen 当前窗口内目标串字符的个数。 时间复杂度O(N). 类似的题: [Substring with Concatenation of All Words ](https://oj.leetcode.com/problems/substring-with-concatenation-of-all-words/), [Longest Substring Without Repeating Characters ](https://oj.leetcode.com/problems/longest-substring-without-repeating-characters/) .
0 commit comments