@@ -23,7 +23,7 @@ headerDepth: 0
23
23
| 621 | 任务调度器 | | [ ` 贪心 ` ] ( /tag/greedy.md ) [ ` 数组 ` ] ( /tag/array.md ) [ ` 哈希表 ` ] ( /tag/hash-table.md ) ` 3+ ` | 🟠 | [ 🀄️] ( https://leetcode.cn/problems/task-scheduler ) [ 🔗] ( https://leetcode.com/problems/task-scheduler ) | 14 |
24
24
| 375 | 猜数字大小 II | [[ ✓]] ( /problem/0375.md ) | [ ` 数学 ` ] ( /tag/math.md ) [ ` 动态规划 ` ] ( /tag/dynamic-programming.md ) [ ` 博弈 ` ] ( /tag/game-theory.md ) | 🟠 | [ 🀄️] ( https://leetcode.cn/problems/guess-number-higher-or-lower-ii ) [ 🔗] ( https://leetcode.com/problems/guess-number-higher-or-lower-ii ) | 14 |
25
25
| 1056 | 易混淆数 🔒 | | [ ` 数学 ` ] ( /tag/math.md ) | 🟢 | [ 🀄️] ( https://leetcode.cn/problems/confusing-number ) [ 🔗] ( https://leetcode.com/problems/confusing-number ) | 14 |
26
- | 1146 | 快照数组 | | [ ` 设计 ` ] ( /tag/design.md ) [ ` 数组 ` ] ( /tag/array.md ) [ ` 哈希表 ` ] ( /tag/hash-table.md ) ` 1+ ` | 🟠 | [ 🀄️] ( https://leetcode.cn/problems/snapshot-array ) [ 🔗] ( https://leetcode.com/problems/snapshot-array ) | 14 |
26
+ | 1146 | 快照数组 | [[ ✓ ]] ( /problem/1146.md ) | [ ` 设计 ` ] ( /tag/design.md ) [ ` 数组 ` ] ( /tag/array.md ) [ ` 哈希表 ` ] ( /tag/hash-table.md ) ` 1+ ` | 🟠 | [ 🀄️] ( https://leetcode.cn/problems/snapshot-array ) [ 🔗] ( https://leetcode.com/problems/snapshot-array ) | 14 |
27
27
| 269 | 火星词典 🔒 | | [ ` 深度优先搜索 ` ] ( /tag/depth-first-search.md ) [ ` 广度优先搜索 ` ] ( /tag/breadth-first-search.md ) [ ` 图 ` ] ( /tag/graph.md ) ` 3+ ` | 🔴 | [ 🀄️] ( https://leetcode.cn/problems/alien-dictionary ) [ 🔗] ( https://leetcode.com/problems/alien-dictionary ) | 14 |
28
28
| 695 | 岛屿的最大面积 | [[ ✓]] ( /problem/0695.md ) | [ ` 深度优先搜索 ` ] ( /tag/depth-first-search.md ) [ ` 广度优先搜索 ` ] ( /tag/breadth-first-search.md ) [ ` 并查集 ` ] ( /tag/union-find.md ) ` 2+ ` | 🟠 | [ 🀄️] ( https://leetcode.cn/problems/max-area-of-island ) [ 🔗] ( https://leetcode.com/problems/max-area-of-island ) | 13 |
29
29
| 57 | 插入区间 | [[ ✓]] ( /problem/0057.md ) | [ ` 数组 ` ] ( /tag/array.md ) | 🟠 | [ 🀄️] ( https://leetcode.cn/problems/insert-interval ) [ 🔗] ( https://leetcode.com/problems/insert-interval ) | 13 |
@@ -34,7 +34,7 @@ headerDepth: 0
34
34
| 1377 | T 秒后青蛙的位置 | | [ ` 树 ` ] ( /tag/tree.md ) [ ` 深度优先搜索 ` ] ( /tag/depth-first-search.md ) [ ` 广度优先搜索 ` ] ( /tag/breadth-first-search.md ) ` 1+ ` | 🔴 | [ 🀄️] ( https://leetcode.cn/problems/frog-position-after-t-seconds ) [ 🔗] ( https://leetcode.com/problems/frog-position-after-t-seconds ) | 12 |
35
35
| 632 | 最小区间 | [[ ✓]] ( /problem/0632.md ) | [ ` 贪心 ` ] ( /tag/greedy.md ) [ ` 数组 ` ] ( /tag/array.md ) [ ` 哈希表 ` ] ( /tag/hash-table.md ) ` 3+ ` | 🔴 | [ 🀄️] ( https://leetcode.cn/problems/smallest-range-covering-elements-from-k-lists ) [ 🔗] ( https://leetcode.com/problems/smallest-range-covering-elements-from-k-lists ) | 12 |
36
36
| 127 | 单词接龙 | [[ ✓]] ( /problem/0127.md ) | [ ` 广度优先搜索 ` ] ( /tag/breadth-first-search.md ) [ ` 哈希表 ` ] ( /tag/hash-table.md ) [ ` 字符串 ` ] ( /tag/string.md ) | 🔴 | [ 🀄️] ( https://leetcode.cn/problems/word-ladder ) [ 🔗] ( https://leetcode.com/problems/word-ladder ) | 12 |
37
- | 528 | 按权重随机选择 | | [ ` 数组 ` ] ( /tag/array.md ) [ ` 数学 ` ] ( /tag/math.md ) [ ` 二分查找 ` ] ( /tag/binary-search.md ) ` 2+ ` | 🟠 | [ 🀄️] ( https://leetcode.cn/problems/random-pick-with-weight ) [ 🔗] ( https://leetcode.com/problems/random-pick-with-weight ) | 12 |
37
+ | 528 | 按权重随机选择 | [[ ✓ ]] ( /problem/0528.md ) | [ ` 数组 ` ] ( /tag/array.md ) [ ` 数学 ` ] ( /tag/math.md ) [ ` 二分查找 ` ] ( /tag/binary-search.md ) ` 2+ ` | 🟠 | [ 🀄️] ( https://leetcode.cn/problems/random-pick-with-weight ) [ 🔗] ( https://leetcode.com/problems/random-pick-with-weight ) | 12 |
38
38
| 1825 | 求出 MK 平均值 | | [ ` 设计 ` ] ( /tag/design.md ) [ ` 队列 ` ] ( /tag/queue.md ) [ ` 数据流 ` ] ( /tag/data-stream.md ) ` 2+ ` | 🔴 | [ 🀄️] ( https://leetcode.cn/problems/finding-mk-average ) [ 🔗] ( https://leetcode.com/problems/finding-mk-average ) | 12 |
39
39
| 99 | 恢复二叉搜索树 | [[ ✓]] ( /problem/0099.md ) | [ ` 树 ` ] ( /tag/tree.md ) [ ` 深度优先搜索 ` ] ( /tag/depth-first-search.md ) [ ` 二叉搜索树 ` ] ( /tag/binary-search-tree.md ) ` 1+ ` | 🟠 | [ 🀄️] ( https://leetcode.cn/problems/recover-binary-search-tree ) [ 🔗] ( https://leetcode.com/problems/recover-binary-search-tree ) | 11 |
40
40
| 302 | 包含全部黑色像素的最小矩形 🔒 | | [ ` 深度优先搜索 ` ] ( /tag/depth-first-search.md ) [ ` 广度优先搜索 ` ] ( /tag/breadth-first-search.md ) [ ` 数组 ` ] ( /tag/array.md ) ` 2+ ` | 🔴 | [ 🀄️] ( https://leetcode.cn/problems/smallest-rectangle-enclosing-black-pixels ) [ 🔗] ( https://leetcode.com/problems/smallest-rectangle-enclosing-black-pixels ) | 11 |
@@ -92,7 +92,7 @@ headerDepth: 0
92
92
| 560 | 和为 K 的子数组 | [[ ✓]] ( /problem/0560.md ) | [ ` 数组 ` ] ( /tag/array.md ) [ ` 哈希表 ` ] ( /tag/hash-table.md ) [ ` 前缀和 ` ] ( /tag/prefix-sum.md ) | 🟠 | [ 🀄️] ( https://leetcode.cn/problems/subarray-sum-equals-k ) [ 🔗] ( https://leetcode.com/problems/subarray-sum-equals-k ) | 13 |
93
93
| 71 | 简化路径 | [[ ✓]] ( /problem/0071.md ) | [ ` 栈 ` ] ( /tag/stack.md ) [ ` 字符串 ` ] ( /tag/string.md ) | 🟠 | [ 🀄️] ( https://leetcode.cn/problems/simplify-path ) [ 🔗] ( https://leetcode.com/problems/simplify-path ) | 13 |
94
94
| 238 | 除自身以外数组的乘积 | [[ ✓]] ( /problem/0238.md ) | [ ` 数组 ` ] ( /tag/array.md ) [ ` 前缀和 ` ] ( /tag/prefix-sum.md ) | 🟠 | [ 🀄️] ( https://leetcode.cn/problems/product-of-array-except-self ) [ 🔗] ( https://leetcode.com/problems/product-of-array-except-self ) | 12 |
95
- | 1539 | 第 k 个缺失的正整数 | | [ ` 数组 ` ] ( /tag/array.md ) [ ` 二分查找 ` ] ( /tag/binary-search.md ) | 🟢 | [ 🀄️] ( https://leetcode.cn/problems/kth-missing-positive-number ) [ 🔗] ( https://leetcode.com/problems/kth-missing-positive-number ) | 12 |
95
+ | 1539 | 第 k 个缺失的正整数 | [[ ✓ ]] ( /problem/1539.md ) | [ ` 数组 ` ] ( /tag/array.md ) [ ` 二分查找 ` ] ( /tag/binary-search.md ) | 🟢 | [ 🀄️] ( https://leetcode.cn/problems/kth-missing-positive-number ) [ 🔗] ( https://leetcode.com/problems/kth-missing-positive-number ) | 12 |
96
96
| 125 | 验证回文串 | [[ ✓]] ( /problem/0125.md ) | [ ` 双指针 ` ] ( /tag/two-pointers.md ) [ ` 字符串 ` ] ( /tag/string.md ) | 🟢 | [ 🀄️] ( https://leetcode.cn/problems/valid-palindrome ) [ 🔗] ( https://leetcode.com/problems/valid-palindrome ) | 12 |
97
97
| 827 | 最大人工岛 | | [ ` 深度优先搜索 ` ] ( /tag/depth-first-search.md ) [ ` 广度优先搜索 ` ] ( /tag/breadth-first-search.md ) [ ` 并查集 ` ] ( /tag/union-find.md ) ` 2+ ` | 🔴 | [ 🀄️] ( https://leetcode.cn/problems/making-a-large-island ) [ 🔗] ( https://leetcode.com/problems/making-a-large-island ) | 12 |
98
98
| 199 | 二叉树的右视图 | [[ ✓]] ( /problem/0199.md ) | [ ` 树 ` ] ( /tag/tree.md ) [ ` 深度优先搜索 ` ] ( /tag/depth-first-search.md ) [ ` 广度优先搜索 ` ] ( /tag/breadth-first-search.md ) ` 1+ ` | 🟠 | [ 🀄️] ( https://leetcode.cn/problems/binary-tree-right-side-view ) [ 🔗] ( https://leetcode.com/problems/binary-tree-right-side-view ) | 12 |
0 commit comments