@@ -66,7 +66,7 @@ headerDepth: 0
66
66
| 0105 | [ 从前序与中序遍历序列构造二叉树] ( https://leetcode.com/problems/construct-binary-tree-from-preorder-and-inorder-traversal/ ) | [ JS] ( https://2xiao.github.io/leetcode-js/leetcode/problem/0105 ) | [ ` 树 ` ] ( /leetcode/outline/tag/tree.md ) [ ` 数组 ` ] ( /leetcode/outline/tag/array.md ) [ ` 哈希表 ` ] ( /leetcode/outline/tag/hash-table.md ) ` 2+ ` | <font color =#ffb800 >Medium</font > | 84 |
67
67
| 0043 | [ 字符串相乘] ( https://leetcode.com/problems/multiply-strings/ ) | | [ ` 数学 ` ] ( /leetcode/outline/tag/mathematics.md ) [ ` 字符串 ` ] ( /leetcode/outline/tag/string.md ) [ ` 模拟 ` ] ( /leetcode/outline/tag/simulation.md ) | <font color =#ffb800 >Medium</font > | 82 |
68
68
| 0151 | [ 反转字符串中的单词] ( https://leetcode.com/problems/reverse-words-in-a-string/ ) | [ JS] ( https://2xiao.github.io/leetcode-js/leetcode/problem/0151 ) | [ ` 双指针 ` ] ( /leetcode/outline/tag/two-pointers.md ) [ ` 字符串 ` ] ( /leetcode/outline/tag/string.md ) | <font color =#ffb800 >Medium</font > | 81 |
69
- | 0032 | [ 最长有效括号] ( https://leetcode.com/problems/longest-valid-parentheses/ ) | | [ ` 栈 ` ] ( /leetcode/outline/tag/stack.md ) [ ` 字符串 ` ] ( /leetcode/outline/tag/string.md ) [ ` 动态规划 ` ] ( /leetcode/outline/tag/dynamic-programming.md ) | <font color =#ff334b >Hard</font > | 81 |
69
+ | 0032 | [ 最长有效括号] ( https://leetcode.com/problems/longest-valid-parentheses/ ) | [ JS ] ( https://2xiao.github.io/leetcode-js/leetcode/problem/0032 ) | [ ` 栈 ` ] ( /leetcode/outline/tag/stack.md ) [ ` 字符串 ` ] ( /leetcode/outline/tag/string.md ) [ ` 动态规划 ` ] ( /leetcode/outline/tag/dynamic-programming.md ) | <font color =#ff334b >Hard</font > | 81 |
70
70
| 0144 | [ 二叉树的前序遍历] ( https://leetcode.com/problems/binary-tree-preorder-traversal/ ) | [ JS] ( https://2xiao.github.io/leetcode-js/leetcode/problem/0144 ) | [ ` 栈 ` ] ( /leetcode/outline/tag/stack.md ) [ ` 树 ` ] ( /leetcode/outline/tag/tree.md ) [ ` 深度优先搜索 ` ] ( /leetcode/outline/tag/depth-first-search.md ) ` 1+ ` | <font color =#15bd66 >Easy</font > | 78 |
71
71
| 0104 | [ 二叉树的最大深度] ( https://leetcode.com/problems/maximum-depth-of-binary-tree/ ) | [ JS] ( https://2xiao.github.io/leetcode-js/leetcode/problem/0104 ) | [ ` 树 ` ] ( /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 > | 77 |
72
72
| 0110 | [ 平衡二叉树] ( https://leetcode.com/problems/balanced-binary-tree/ ) | [ JS] ( https://2xiao.github.io/leetcode-js/leetcode/problem/0110 ) | [ ` 树 ` ] ( /leetcode/outline/tag/tree.md ) [ ` 深度优先搜索 ` ] ( /leetcode/outline/tag/depth-first-search.md ) [ ` 二叉树 ` ] ( /leetcode/outline/tag/binary-tree.md ) | <font color =#15bd66 >Easy</font > | 77 |
@@ -176,7 +176,7 @@ headerDepth: 0
176
176
| 1004 | [ 最大连续1的个数 III] ( https://leetcode.com/problems/max-consecutive-ones-iii/ ) | | [ ` 数组 ` ] ( /leetcode/outline/tag/array.md ) [ ` 二分查找 ` ] ( /leetcode/outline/tag/binary-search.md ) [ ` 前缀和 ` ] ( /leetcode/outline/tag/prefix-sum.md ) ` 1+ ` | <font color =#ffb800 >Medium</font > | 22 |
177
177
| 0349 | [ 两个数组的交集] ( https://leetcode.com/problems/intersection-of-two-arrays/ ) | | [ ` 数组 ` ] ( /leetcode/outline/tag/array.md ) [ ` 哈希表 ` ] ( /leetcode/outline/tag/hash-table.md ) [ ` 双指针 ` ] ( /leetcode/outline/tag/two-pointers.md ) ` 2+ ` | <font color =#15bd66 >Easy</font > | 22 |
178
178
| 剑指 Offer 61 | [ 扑克牌中的顺子] ( https://leetcode.cn/problems/bu-ke-pai-zhong-de-shun-zi-lcof/ ) | [ JS] ( https://2xiao.github.io/leetcode-js/leetcode/problem/jz_offer_61_1 ) | [ ` 数组 ` ] ( /leetcode/outline/tag/array.md ) [ ` 排序 ` ] ( /leetcode/outline/tag/sorting.md ) | <font color =#15bd66 >Easy</font > | 21 |
179
- | 0085 | [ 最大矩形] ( https://leetcode.com/problems/maximal-rectangle/ ) | | [ ` 栈 ` ] ( /leetcode/outline/tag/stack.md ) [ ` 数组 ` ] ( /leetcode/outline/tag/array.md ) [ ` 动态规划 ` ] ( /leetcode/outline/tag/dynamic-programming.md ) ` 2+ ` | <font color =#ff334b >Hard</font > | 21 |
179
+ | 0085 | [ 最大矩形] ( https://leetcode.com/problems/maximal-rectangle/ ) | [ JS ] ( https://2xiao.github.io/leetcode-js/leetcode/problem/0085 ) | [ ` 栈 ` ] ( /leetcode/outline/tag/stack.md ) [ ` 数组 ` ] ( /leetcode/outline/tag/array.md ) [ ` 动态规划 ` ] ( /leetcode/outline/tag/dynamic-programming.md ) ` 2+ ` | <font color =#ff334b >Hard</font > | 21 |
180
180
| 1047 | [ 删除字符串中的所有相邻重复项] ( https://leetcode.com/problems/remove-all-adjacent-duplicates-in-string/ ) | [ JS] ( https://2xiao.github.io/leetcode-js/leetcode/problem/1047 ) | [ ` 栈 ` ] ( /leetcode/outline/tag/stack.md ) [ ` 字符串 ` ] ( /leetcode/outline/tag/string.md ) | <font color =#15bd66 >Easy</font > | 21 |
181
181
| 0071 | [ 简化路径] ( https://leetcode.com/problems/simplify-path/ ) | [ JS] ( https://2xiao.github.io/leetcode-js/leetcode/problem/0071 ) | [ ` 栈 ` ] ( /leetcode/outline/tag/stack.md ) [ ` 字符串 ` ] ( /leetcode/outline/tag/string.md ) | <font color =#ffb800 >Medium</font > | 21 |
182
182
| 0679 | [ 24 点游戏] ( https://leetcode.com/problems/24-game/ ) | | [ ` 数组 ` ] ( /leetcode/outline/tag/array.md ) [ ` 数学 ` ] ( /leetcode/outline/tag/mathematics.md ) [ ` 回溯 ` ] ( /leetcode/outline/tag/backtracking.md ) | <font color =#ff334b >Hard</font > | 21 |
0 commit comments