| 0674 | Longest Continuous Increasing Subsequence(最长连续递增序列) | Python | 简单 |
| 0485 | Max Consecutive Ones(最大连续 1 的个数) | Python | 简单 |
| 0487 | Max Consecutive Ones II(最大连续1的个数 II) | Python | 中等 |
| 0076 | Minimum Window Substring(最小覆盖子串) | Python | 困难 |
| 0718 | Maximum Length of Repeated Subarray(最长重复子数组) | Python | 中等 |
| 0209 | Minimum Size Subarray Sum(长度最小的子数组) | Python | 中等 |
| 1004 | Max Consecutive Ones III(最大连续1的个数 III) | Python | 中等 |
| 1658 | Minimum Operations to Reduce X to Zero(将 x 减到 0 的最小操作数) | Python | 中等 |
| 0424 | Longest Repeating Character Replacement(替换后的最长重复字符) | Python | 中等 |
| 0003 | Longest Substring Without Repeating Characters(无重复字符的最长子串) | Python | 中等 |
| 1695 | Maximum Erasure Value(删除子数组的最大得分) | Python | 中等 |
| 1208 | Get Equal Substrings Within Budget(尽可能使字符串相等) | Python | 中等 |
| 1493 | Longest Subarray of 1's After Deleting One Element(删掉一个元素以后全为 1 的最长子数组) | Python | 中等 |
| 0727 | Minimum Window Subsequence(最小窗口子序列) | Python | 困难 |
| 0159 | Longest Substring with At Most Two Distinct Characters(至多包含两个不同字符的最长子串) | Python | 中等 |
| 0340 | Longest Substring with At Most K Distinct Characters(至多包含 K 个不同字符的最长子串) | Python | 中等 |
| 0795 | Number of Subarrays with Bounded Maximum(区间子数组个数) | Python | 中等 |
| 0992 | Subarrays with K Different Integers(K 个不同整数的子数组) | Python | 困难 |
| 0713 | Subarray Product Less Than K(乘积小于 K 的子数组) | Python | 中等 |
| 0904 | Fruit Into Baskets(水果成篮) | Python | 中等 |
| 1358 | Number of Substrings Containing All Three Characters(包含所有三种字符的子字符串数目) | Python | 中等 |
| 0467 | Unique Substrings in Wraparound String(环绕字符串中唯一的子字符串) | Python | 中等 |
| 1438 | Longest Continuous Subarray with Absolute Diff Less Than or Equal to Limit(绝对差不超过限制的最长连续子数组) | Python | 中等 |