@@ -91,7 +91,7 @@ headerDepth: 0
91
91
| 162 | [ 寻找峰值] ( https://leetcode.com/problems/find-peak-element ) | [[ ✓]] ( https://2xiao.github.io/leetcode-js/leetcode/problem/0162 ) | [ ` 数组 ` ] ( /leetcode/outline/tag/array.md ) [ ` 二分查找 ` ] ( /leetcode/outline/tag/binary-search.md ) | <font color =#ffb800 >Medium</font > | 60 |
92
92
| 226 | [ 翻转二叉树] ( https://leetcode.com/problems/invert-binary-tree ) | [[ ✓]] ( https://2xiao.github.io/leetcode-js/leetcode/problem/0226 ) | [ ` 树 ` ] ( /leetcode/outline/tag/tree.md ) [ ` 深度优先搜索 ` ] ( /leetcode/outline/tag/depth-first-search.md ) [ ` 广度优先搜索 ` ] ( /leetcode/outline/tag/breadth-first-search.md ) ` 1+ ` | <font color =#15bd66 >Easy</font > | 59 |
93
93
| 14 | [ 最长公共前缀] ( https://leetcode.com/problems/longest-common-prefix ) | [[ ✓]] ( https://2xiao.github.io/leetcode-js/leetcode/problem/0014 ) | [ ` 字典树 ` ] ( /leetcode/outline/tag/trie.md ) [ ` 字符串 ` ] ( /leetcode/outline/tag/string.md ) | <font color =#15bd66 >Easy</font > | 58 |
94
- | 662 | [ 二叉树最大宽度] ( https://leetcode.com/problems/maximum-width-of-binary-tree ) | | [ ` 树 ` ] ( /leetcode/outline/tag/tree.md ) [ ` 深度优先搜索 ` ] ( /leetcode/outline/tag/depth-first-search.md ) [ ` 广度优先搜索 ` ] ( /leetcode/outline/tag/breadth-first-search.md ) ` 1+ ` | <font color =#ffb800 >Medium</font > | 57 |
94
+ | 662 | [ 二叉树最大宽度] ( https://leetcode.com/problems/maximum-width-of-binary-tree ) | [[ ✓ ]] ( https://2xiao.github.io/leetcode-js/leetcode/problem/0662 ) | [ ` 树 ` ] ( /leetcode/outline/tag/tree.md ) [ ` 深度优先搜索 ` ] ( /leetcode/outline/tag/depth-first-search.md ) [ ` 广度优先搜索 ` ] ( /leetcode/outline/tag/breadth-first-search.md ) ` 1+ ` | <font color =#ffb800 >Medium</font > | 57 |
95
95
| 122 | [ 买卖股票的最佳时机 II] ( https://leetcode.com/problems/best-time-to-buy-and-sell-stock-ii ) | [[ ✓]] ( https://2xiao.github.io/leetcode-js/leetcode/problem/0122 ) | [ ` 贪心 ` ] ( /leetcode/outline/tag/greedy.md ) [ ` 数组 ` ] ( /leetcode/outline/tag/array.md ) [ ` 动态规划 ` ] ( /leetcode/outline/tag/dynamic-programming.md ) | <font color =#ffb800 >Medium</font > | 56 |
96
96
| 695 | [ 岛屿的最大面积] ( https://leetcode.com/problems/max-area-of-island ) | [[ ✓]] ( https://2xiao.github.io/leetcode-js/leetcode/problem/0695 ) | [ ` 深度优先搜索 ` ] ( /leetcode/outline/tag/depth-first-search.md ) [ ` 广度优先搜索 ` ] ( /leetcode/outline/tag/breadth-first-search.md ) [ ` 并查集 ` ] ( /leetcode/outline/tag/union-find.md ) ` 2+ ` | <font color =#ffb800 >Medium</font > | 56 |
97
97
| 128 | [ 最长连续序列] ( https://leetcode.com/problems/longest-consecutive-sequence ) | [[ ✓]] ( https://2xiao.github.io/leetcode-js/leetcode/problem/0128 ) | [ ` 并查集 ` ] ( /leetcode/outline/tag/union-find.md ) [ ` 数组 ` ] ( /leetcode/outline/tag/array.md ) [ ` 哈希表 ` ] ( /leetcode/outline/tag/hash-table.md ) | <font color =#ffb800 >Medium</font > | 56 |
@@ -104,7 +104,7 @@ headerDepth: 0
104
104
| 198 | [ 打家劫舍] ( https://leetcode.com/problems/house-robber ) | [[ ✓]] ( https://2xiao.github.io/leetcode-js/leetcode/problem/0198 ) | [ ` 数组 ` ] ( /leetcode/outline/tag/array.md ) [ ` 动态规划 ` ] ( /leetcode/outline/tag/dynamic-programming.md ) | <font color =#ffb800 >Medium</font > | 51 |
105
105
| 24 | [ 两两交换链表中的节点] ( https://leetcode.com/problems/swap-nodes-in-pairs ) | [[ ✓]] ( https://2xiao.github.io/leetcode-js/leetcode/problem/0024 ) | [ ` 递归 ` ] ( /leetcode/outline/tag/recursion.md ) [ ` 链表 ` ] ( /leetcode/outline/tag/linked-list.md ) | <font color =#ffb800 >Medium</font > | 50 |
106
106
| 283 | [ 移动零] ( https://leetcode.com/problems/move-zeroes ) | [[ ✓]] ( https://2xiao.github.io/leetcode-js/leetcode/problem/0283 ) | [ ` 数组 ` ] ( /leetcode/outline/tag/array.md ) [ ` 双指针 ` ] ( /leetcode/outline/tag/two-pointers.md ) | <font color =#15bd66 >Easy</font > | 49 |
107
- | 560 | [ 和为 K 的子数组] ( https://leetcode.com/problems/subarray-sum-equals-k ) | | [ ` 数组 ` ] ( /leetcode/outline/tag/array.md ) [ ` 哈希表 ` ] ( /leetcode/outline/tag/hash-table.md ) [ ` 前缀和 ` ] ( /leetcode/outline/tag/prefix-sum.md ) | <font color =#ffb800 >Medium</font > | 49 |
107
+ | 560 | [ 和为 K 的子数组] ( https://leetcode.com/problems/subarray-sum-equals-k ) | [[ ✓ ]] ( https://2xiao.github.io/leetcode-js/leetcode/problem/0560 ) | [ ` 数组 ` ] ( /leetcode/outline/tag/array.md ) [ ` 哈希表 ` ] ( /leetcode/outline/tag/hash-table.md ) [ ` 前缀和 ` ] ( /leetcode/outline/tag/prefix-sum.md ) | <font color =#ffb800 >Medium</font > | 49 |
108
108
| 209 | [ 长度最小的子数组] ( https://leetcode.com/problems/minimum-size-subarray-sum ) | [[ ✓]] ( https://2xiao.github.io/leetcode-js/leetcode/problem/0209 ) | [ ` 数组 ` ] ( /leetcode/outline/tag/array.md ) [ ` 二分查找 ` ] ( /leetcode/outline/tag/binary-search.md ) [ ` 前缀和 ` ] ( /leetcode/outline/tag/prefix-sum.md ) ` 1+ ` | <font color =#ffb800 >Medium</font > | 49 |
109
109
| 297 | [ 二叉树的序列化与反序列化] ( https://leetcode.com/problems/serialize-and-deserialize-binary-tree ) | [[ ✓]] ( https://2xiao.github.io/leetcode-js/leetcode/problem/0297 ) | [ ` 树 ` ] ( /leetcode/outline/tag/tree.md ) [ ` 深度优先搜索 ` ] ( /leetcode/outline/tag/depth-first-search.md ) [ ` 广度优先搜索 ` ] ( /leetcode/outline/tag/breadth-first-search.md ) ` 3+ ` | <font color =#ff334b >Hard</font > | 49 |
110
110
| 153 | [ 寻找旋转排序数组中的最小值] ( https://leetcode.com/problems/find-minimum-in-rotated-sorted-array ) | [[ ✓]] ( https://2xiao.github.io/leetcode-js/leetcode/problem/0153 ) | [ ` 数组 ` ] ( /leetcode/outline/tag/array.md ) [ ` 二分查找 ` ] ( /leetcode/outline/tag/binary-search.md ) | <font color =#ffb800 >Medium</font > | 49 |
@@ -147,7 +147,7 @@ headerDepth: 0
147
147
| 剑指 Offer 26 | [ 树的子结构] ( https://leetcode.cn/problems/shu-de-zi-jie-gou-lcof ) | [[ ✓]] ( https://2xiao.github.io/leetcode-js/leetcode/problem/jz_offer_26_1 ) | [ ` 树 ` ] ( /leetcode/outline/tag/tree.md ) [ ` 深度优先搜索 ` ] ( /leetcode/outline/tag/depth-first-search.md ) [ ` 二叉树 ` ] ( /leetcode/outline/tag/binary-tree.md ) | <font color =#ffb800 >Medium</font > | 32 |
148
148
| 45 | [ 跳跃游戏 II] ( https://leetcode.com/problems/jump-game-ii ) | [[ ✓]] ( https://2xiao.github.io/leetcode-js/leetcode/problem/0045 ) | [ ` 贪心 ` ] ( /leetcode/outline/tag/greedy.md ) [ ` 数组 ` ] ( /leetcode/outline/tag/array.md ) [ ` 动态规划 ` ] ( /leetcode/outline/tag/dynamic-programming.md ) | <font color =#ffb800 >Medium</font > | 31 |
149
149
| 230 | [ 二叉搜索树中第 K 小的元素] ( https://leetcode.com/problems/kth-smallest-element-in-a-bst ) | [[ ✓]] ( https://2xiao.github.io/leetcode-js/leetcode/problem/0230 ) | [ ` 树 ` ] ( /leetcode/outline/tag/tree.md ) [ ` 深度优先搜索 ` ] ( /leetcode/outline/tag/depth-first-search.md ) [ ` 二叉搜索树 ` ] ( /leetcode/outline/tag/binary-search-tree.md ) ` 1+ ` | <font color =#ffb800 >Medium</font > | 31 |
150
- | 剑指 Offer 62 | [ 圆圈中最后剩下的数字] ( https://leetcode.cn/problems/yuan-quan-zhong-zui-hou-sheng-xia-de-shu-zi-lcof ) | | [ ` 递归 ` ] ( /leetcode/outline/tag/recursion.md ) [ ` 数学 ` ] ( /leetcode/outline/tag/math.md ) | <font color =#15bd66 >Easy</font > | 30 |
150
+ | 剑指 Offer 62 | [ 圆圈中最后剩下的数字] ( https://leetcode.cn/problems/yuan-quan-zhong-zui-hou-sheng-xia-de-shu-zi-lcof ) | [[ ✓ ]] ( https://2xiao.github.io/leetcode-js/leetcode/problem/jz_offer_62_1 ) | [ ` 递归 ` ] ( /leetcode/outline/tag/recursion.md ) [ ` 数学 ` ] ( /leetcode/outline/tag/math.md ) | <font color =#15bd66 >Easy</font > | 30 |
151
151
| 剑指 Offer 21 | [ 调整数组顺序使奇数位于偶数前面] ( https://leetcode.cn/problems/diao-zheng-shu-zu-shun-xu-shi-qi-shu-wei-yu-ou-shu-qian-mian-lcof ) | [[ ✓]] ( https://2xiao.github.io/leetcode-js/leetcode/problem/jz_offer_21_1 ) | [ ` 数组 ` ] ( /leetcode/outline/tag/array.md ) [ ` 双指针 ` ] ( /leetcode/outline/tag/two-pointers.md ) [ ` 排序 ` ] ( /leetcode/outline/tag/sorting.md ) | <font color =#15bd66 >Easy</font > | 30 |
152
152
| 16 | [ 最接近的三数之和] ( https://leetcode.com/problems/3sum-closest ) | [[ ✓]] ( https://2xiao.github.io/leetcode-js/leetcode/problem/0016 ) | [ ` 数组 ` ] ( /leetcode/outline/tag/array.md ) [ ` 双指针 ` ] ( /leetcode/outline/tag/two-pointers.md ) [ ` 排序 ` ] ( /leetcode/outline/tag/sorting.md ) | <font color =#ffb800 >Medium</font > | 29 |
153
153
| 125 | [ 验证回文串] ( https://leetcode.com/problems/valid-palindrome ) | [[ ✓]] ( https://2xiao.github.io/leetcode-js/leetcode/problem/0125 ) | [ ` 双指针 ` ] ( /leetcode/outline/tag/two-pointers.md ) [ ` 字符串 ` ] ( /leetcode/outline/tag/string.md ) | <font color =#15bd66 >Easy</font > | 29 |
0 commit comments