@@ -114,7 +114,7 @@ headerDepth: 0
114
114
| 136 | 只出现一次的数字 | [[ ✓]] ( /problem/0136.md ) | [ ` 位运算 ` ] ( /tag/bit-manipulation.md ) [ ` 数组 ` ] ( /tag/array.md ) | 🟢 | [ 🀄️] ( https://leetcode.cn/problems/single-number ) [ 🔗] ( https://leetcode.com/problems/single-number ) | 45 |
115
115
| 460 | LFU 缓存 | [[ ✓]] ( /problem/0460.md ) | [ ` 设计 ` ] ( /tag/design.md ) [ ` 哈希表 ` ] ( /tag/hash-table.md ) [ ` 链表 ` ] ( /tag/linked-list.md ) ` 1+ ` | 🔴 | [ 🀄️] ( https://leetcode.cn/problems/lfu-cache ) [ 🔗] ( https://leetcode.com/problems/lfu-cache ) | 45 |
116
116
| 剑指 Offer 9 | 用两个栈实现队列 | [[ ✓]] ( /offer/jz_offer_09_1.md ) | [ ` 栈 ` ] ( /tag/stack.md ) [ ` 设计 ` ] ( /tag/design.md ) [ ` 队列 ` ] ( /tag/queue.md ) | 🟢 | [ 🀄️] ( https://leetcode.cn/problems/yong-liang-ge-zhan-shi-xian-dui-lie-lcof ) | 44 |
117
- | 402 | 移掉 K 位数字 | | [ ` 栈 ` ] ( /tag/stack.md ) [ ` 贪心 ` ] ( /tag/greedy.md ) [ ` 字符串 ` ] ( /tag/string.md ) ` 1+ ` | 🟠 | [ 🀄️] ( https://leetcode.cn/problems/remove-k-digits ) [ 🔗] ( https://leetcode.com/problems/remove-k-digits ) | 44 |
117
+ | 402 | 移掉 K 位数字 | [[ ✓ ]] ( /problem/0402.md ) | [ ` 栈 ` ] ( /tag/stack.md ) [ ` 贪心 ` ] ( /tag/greedy.md ) [ ` 字符串 ` ] ( /tag/string.md ) ` 1+ ` | 🟠 | [ 🀄️] ( https://leetcode.cn/problems/remove-k-digits ) [ 🔗] ( https://leetcode.com/problems/remove-k-digits ) | 44 |
118
118
| 11 | 盛最多水的容器 | [[ ✓]] ( /problem/0011.md ) | [ ` 贪心 ` ] ( /tag/greedy.md ) [ ` 数组 ` ] ( /tag/array.md ) [ ` 双指针 ` ] ( /tag/two-pointers.md ) | 🟠 | [ 🀄️] ( https://leetcode.cn/problems/container-with-most-water ) [ 🔗] ( https://leetcode.com/problems/container-with-most-water ) | 43 |
119
119
| 剑指 Offer 36 | 二叉搜索树与双向链表 | [[ ✓]] ( /offer/jz_offer_36_1.md ) | [ ` 栈 ` ] ( /tag/stack.md ) [ ` 树 ` ] ( /tag/tree.md ) [ ` 深度优先搜索 ` ] ( /tag/depth-first-search.md ) ` 4+ ` | 🟠 | [ 🀄️] ( https://leetcode.cn/problems/er-cha-sou-suo-shu-yu-shuang-xiang-lian-biao-lcof ) | 43 |
120
120
| 224 | 基本计算器 | [[ ✓]] ( /problem/0224.md ) | [ ` 栈 ` ] ( /tag/stack.md ) [ ` 递归 ` ] ( /tag/recursion.md ) [ ` 数学 ` ] ( /tag/math.md ) ` 1+ ` | 🔴 | [ 🀄️] ( https://leetcode.cn/problems/basic-calculator ) [ 🔗] ( https://leetcode.com/problems/basic-calculator ) | 43 |
@@ -196,7 +196,7 @@ headerDepth: 0
196
196
| 673 | 最长递增子序列的个数 | | [ ` 树状数组 ` ] ( /tag/binary-indexed-tree.md ) [ ` 线段树 ` ] ( /tag/segment-tree.md ) [ ` 数组 ` ] ( /tag/array.md ) ` 1+ ` | 🟠 | [ 🀄️] ( https://leetcode.cn/problems/number-of-longest-increasing-subsequence ) [ 🔗] ( https://leetcode.com/problems/number-of-longest-increasing-subsequence ) | 19 |
197
197
| 442 | 数组中重复的数据 | [[ ✓]] ( /problem/0442.md ) | [ ` 数组 ` ] ( /tag/array.md ) [ ` 哈希表 ` ] ( /tag/hash-table.md ) | 🟠 | [ 🀄️] ( https://leetcode.cn/problems/find-all-duplicates-in-an-array ) [ 🔗] ( https://leetcode.com/problems/find-all-duplicates-in-an-array ) | 19 |
198
198
| 509 | 斐波那契数 | [[ ✓]] ( /problem/0509.md ) | [ ` 递归 ` ] ( /tag/recursion.md ) [ ` 记忆化搜索 ` ] ( /tag/memoization.md ) [ ` 数学 ` ] ( /tag/math.md ) ` 1+ ` | 🟢 | [ 🀄️] ( https://leetcode.cn/problems/fibonacci-number ) [ 🔗] ( https://leetcode.com/problems/fibonacci-number ) | 19 |
199
- | 395 | 至少有 K 个重复字符的最长子串 | | [ ` 哈希表 ` ] ( /tag/hash-table.md ) [ ` 字符串 ` ] ( /tag/string.md ) [ ` 分治 ` ] ( /tag/divide-and-conquer.md ) ` 1+ ` | 🟠 | [ 🀄️] ( https://leetcode.cn/problems/longest-substring-with-at-least-k-repeating-characters ) [ 🔗] ( https://leetcode.com/problems/longest-substring-with-at-least-k-repeating-characters ) | 18 |
199
+ | 395 | 至少有 K 个重复字符的最长子串 | [[ ✓ ]] ( /problem/0395.md ) | [ ` 哈希表 ` ] ( /tag/hash-table.md ) [ ` 字符串 ` ] ( /tag/string.md ) [ ` 分治 ` ] ( /tag/divide-and-conquer.md ) ` 1+ ` | 🟠 | [ 🀄️] ( https://leetcode.cn/problems/longest-substring-with-at-least-k-repeating-characters ) [ 🔗] ( https://leetcode.com/problems/longest-substring-with-at-least-k-repeating-characters ) | 18 |
200
200
| 63 | 不同路径 II | [[ ✓]] ( /problem/0063.md ) | [ ` 数组 ` ] ( /tag/array.md ) [ ` 动态规划 ` ] ( /tag/dynamic-programming.md ) [ ` 矩阵 ` ] ( /tag/matrix.md ) | 🟠 | [ 🀄️] ( https://leetcode.cn/problems/unique-paths-ii ) [ 🔗] ( https://leetcode.com/problems/unique-paths-ii ) | 18 |
201
201
| 279 | 完全平方数 | [[ ✓]] ( /problem/0279.md ) | [ ` 广度优先搜索 ` ] ( /tag/breadth-first-search.md ) [ ` 数学 ` ] ( /tag/math.md ) [ ` 动态规划 ` ] ( /tag/dynamic-programming.md ) | 🟠 | [ 🀄️] ( https://leetcode.cn/problems/perfect-squares ) [ 🔗] ( https://leetcode.com/problems/perfect-squares ) | 18 |
202
202
| 443 | 压缩字符串 | [[ ✓]] ( /problem/0443.md ) | [ ` 双指针 ` ] ( /tag/two-pointers.md ) [ ` 字符串 ` ] ( /tag/string.md ) | 🟠 | [ 🀄️] ( https://leetcode.cn/problems/string-compression ) [ 🔗] ( https://leetcode.com/problems/string-compression ) | 18 |
0 commit comments