Skip to content

Commit 1e8c591

Browse files
committed
560 662 1942
1 parent b70a5b0 commit 1e8c591

33 files changed

+869
-36
lines changed

assets/image/3-4-3.png

3.28 KB
Loading

assets/image/3-4-4.png

2.98 KB
Loading

src/.vuepress/sidebar.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -346,6 +346,7 @@ export default sidebar({
346346
"0543",
347347
"0557",
348348
"0559",
349+
"0560",
349350
"0567",
350351
"0572",
351352
"0583",
@@ -363,6 +364,7 @@ export default sidebar({
363364
"0637",
364365
"0641",
365366
"0654",
367+
"0662",
366368
"0678",
367369
"0682",
368370
"0695"
@@ -479,6 +481,7 @@ export default sidebar({
479481
text: "1900-1999",
480482
collapsible: true,
481483
children: [
484+
"1942",
482485
"1963"
483486
],
484487
},
@@ -581,7 +584,9 @@ export default sidebar({
581584
"jz_offer_54_1",
582585
"jz_offer_55_1",
583586
"jz_offer_58_1",
587+
"jz_offer_60_1",
584588
"jz_offer_61_1",
589+
"jz_offer_62_1",
585590
"jz_offer_63_1"
586591
],
587592
},

src/leetcode/algorithm/dynamic_programming.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,5 +325,5 @@
325325
| 1467 | [两个盒子中球的颜色数相同的概率](https://leetcode.com/problems/probability-of-a-two-boxes-having-the-same-number-of-distinct-balls) | | [`数组`](/leetcode/outline/tag/array.md) [`数学`](/leetcode/outline/tag/math.md) [`动态规划`](/leetcode/outline/tag/dynamic-programming.md) `3+` | <font color=#ff334b>Hard</font> |
326326
| 1227 | [飞机座位分配概率](https://leetcode.com/problems/airplane-seat-assignment-probability) | | [`脑筋急转弯`](/leetcode/outline/tag/brainteaser.md) [`数学`](/leetcode/outline/tag/math.md) [`动态规划`](/leetcode/outline/tag/dynamic-programming.md) `1+` | <font color=#ffb800>Medium</font> |
327327
| 1377 | [T 秒后青蛙的位置](https://leetcode.com/problems/frog-position-after-t-seconds) | | [``](/leetcode/outline/tag/tree.md) [`深度优先搜索`](/leetcode/outline/tag/depth-first-search.md) [`广度优先搜索`](/leetcode/outline/tag/breadth-first-search.md) `1+` | <font color=#ff334b>Hard</font> |
328-
| 剑指 Offer 60 | [n个骰子的点数](https://leetcode.cn/problems/nge-tou-zi-de-dian-shu-lcof) | | [`数学`](/leetcode/outline/tag/math.md) [`动态规划`](/leetcode/outline/tag/dynamic-programming.md) [`概率与统计`](/leetcode/outline/tag/probability-and-statistics.md) | <font color=#ffb800>Medium</font> |
328+
| 剑指 Offer 60 | [n个骰子的点数](https://leetcode.cn/problems/nge-tou-zi-de-dian-shu-lcof) | [[]](https://2xiao.github.io/leetcode-js/leetcode/problem/jz_offer_60_1) | [`数学`](/leetcode/outline/tag/math.md) [`动态规划`](/leetcode/outline/tag/dynamic-programming.md) [`概率与统计`](/leetcode/outline/tag/probability-and-statistics.md) | <font color=#ffb800>Medium</font> |
329329

src/leetcode/algorithm/enumeration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@
1818
| 剑指 Offer 57 - II | [和为s的连续正数序列](https://leetcode.cn/problems/he-wei-sde-lian-xu-zheng-shu-xu-lie-lcof) | | [`数学`](/leetcode/outline/tag/math.md) [`双指针`](/leetcode/outline/tag/two-pointers.md) [`枚举`](/leetcode/outline/tag/enumeration.md) | <font color=#15bd66>Easy</font> |
1919
| 800 | [相似 RGB 颜色](https://leetcode.com/problems/similar-rgb-color) | | [`数学`](/leetcode/outline/tag/math.md) [`字符串`](/leetcode/outline/tag/string.md) [`枚举`](/leetcode/outline/tag/enumeration.md) | <font color=#15bd66>Easy</font> |
2020
| 221 | [最大正方形](https://leetcode.com/problems/maximal-square) | [[]](https://2xiao.github.io/leetcode-js/leetcode/problem/0221) | [`数组`](/leetcode/outline/tag/array.md) [`动态规划`](/leetcode/outline/tag/dynamic-programming.md) [`矩阵`](/leetcode/outline/tag/matrix.md) | <font color=#ffb800>Medium</font> |
21-
| 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> |
21+
| 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> |
2222

src/leetcode/algorithm/recursion.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,5 @@ function f(n) {
5252
| 50 | [Pow(x, n)](https://leetcode.com/problems/powx-n) | [[]](https://2xiao.github.io/leetcode-js/leetcode/problem/0050) | [`递归`](/leetcode/outline/tag/recursion.md) [`数学`](/leetcode/outline/tag/math.md) | <font color=#ffb800>Medium</font> |
5353
| 779 | [第K个语法符号](https://leetcode.com/problems/k-th-symbol-in-grammar) | | [`位运算`](/leetcode/outline/tag/bit-manipulation.md) [`递归`](/leetcode/outline/tag/recursion.md) [`数学`](/leetcode/outline/tag/math.md) | <font color=#ffb800>Medium</font> |
5454
| 95 | [不同的二叉搜索树 II](https://leetcode.com/problems/unique-binary-search-trees-ii) | [[]](https://2xiao.github.io/leetcode-js/leetcode/problem/0095) | [``](/leetcode/outline/tag/tree.md) [`二叉搜索树`](/leetcode/outline/tag/binary-search-tree.md) [`动态规划`](/leetcode/outline/tag/dynamic-programming.md) `2+` | <font color=#ffb800>Medium</font> |
55-
| 剑指 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> |
55+
| 剑指 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> |
5656

src/leetcode/ds/graph.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
| 124 | [二叉树中的最大路径和](https://leetcode.com/problems/binary-tree-maximum-path-sum) | [[]](https://2xiao.github.io/leetcode-js/leetcode/problem/0124) | [``](/leetcode/outline/tag/tree.md) [`深度优先搜索`](/leetcode/outline/tag/depth-first-search.md) [`动态规划`](/leetcode/outline/tag/dynamic-programming.md) `1+` | <font color=#ff334b>Hard</font> |
2626
| 199 | [二叉树的右视图](https://leetcode.com/problems/binary-tree-right-side-view) | [[]](https://2xiao.github.io/leetcode-js/leetcode/problem/0199) | [``](/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> |
2727
| 543 | [二叉树的直径](https://leetcode.com/problems/diameter-of-binary-tree) | [[]](https://2xiao.github.io/leetcode-js/leetcode/problem/0543) | [``](/leetcode/outline/tag/tree.md) [`深度优先搜索`](/leetcode/outline/tag/depth-first-search.md) [`二叉树`](/leetcode/outline/tag/binary-tree.md) | <font color=#15bd66>Easy</font> |
28-
| 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> |
28+
| 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> |
2929
| 958 | [二叉树的完全性检验](https://leetcode.com/problems/check-completeness-of-a-binary-tree) | [[]](https://2xiao.github.io/leetcode-js/leetcode/problem/0958) | [``](/leetcode/outline/tag/tree.md) [`广度优先搜索`](/leetcode/outline/tag/breadth-first-search.md) [`二叉树`](/leetcode/outline/tag/binary-tree.md) | <font color=#ffb800>Medium</font> |
3030
| 572 | [另一棵树的子树](https://leetcode.com/problems/subtree-of-another-tree) | [[]](https://2xiao.github.io/leetcode-js/leetcode/problem/0572) | [``](/leetcode/outline/tag/tree.md) [`深度优先搜索`](/leetcode/outline/tag/depth-first-search.md) [`二叉树`](/leetcode/outline/tag/binary-tree.md) `2+` | <font color=#15bd66>Easy</font> |
3131
| 100 | [相同的树](https://leetcode.com/problems/same-tree) | [[]](https://2xiao.github.io/leetcode-js/leetcode/problem/0100) | [``](/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> |
@@ -63,7 +63,7 @@
6363
| 323 | [无向图中连通分量的数目](https://leetcode.com/problems/number-of-connected-components-in-an-undirected-graph) | | [`深度优先搜索`](/leetcode/outline/tag/depth-first-search.md) [`广度优先搜索`](/leetcode/outline/tag/breadth-first-search.md) [`并查集`](/leetcode/outline/tag/union-find.md) `1+` | <font color=#ffb800>Medium</font> |
6464
| 剑指 Offer 13 | [机器人的运动范围](https://leetcode.cn/problems/ji-qi-ren-de-yun-dong-fan-wei-lcof) | [[]](https://2xiao.github.io/leetcode-js/leetcode/problem/jz_offer_13_1) | [`深度优先搜索`](/leetcode/outline/tag/depth-first-search.md) [`广度优先搜索`](/leetcode/outline/tag/breadth-first-search.md) [`动态规划`](/leetcode/outline/tag/dynamic-programming.md) | <font color=#ffb800>Medium</font> |
6565
| 199 | [二叉树的右视图](https://leetcode.com/problems/binary-tree-right-side-view) | [[]](https://2xiao.github.io/leetcode-js/leetcode/problem/0199) | [``](/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> |
66-
| 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> |
66+
| 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> |
6767
| 958 | [二叉树的完全性检验](https://leetcode.com/problems/check-completeness-of-a-binary-tree) | [[]](https://2xiao.github.io/leetcode-js/leetcode/problem/0958) | [``](/leetcode/outline/tag/tree.md) [`广度优先搜索`](/leetcode/outline/tag/breadth-first-search.md) [`二叉树`](/leetcode/outline/tag/binary-tree.md) | <font color=#ffb800>Medium</font> |
6868
| 572 | [另一棵树的子树](https://leetcode.com/problems/subtree-of-another-tree) | [[]](https://2xiao.github.io/leetcode-js/leetcode/problem/0572) | [``](/leetcode/outline/tag/tree.md) [`深度优先搜索`](/leetcode/outline/tag/depth-first-search.md) [`二叉树`](/leetcode/outline/tag/binary-tree.md) `2+` | <font color=#15bd66>Easy</font> |
6969
| 100 | [相同的树](https://leetcode.com/problems/same-tree) | [[]](https://2xiao.github.io/leetcode-js/leetcode/problem/0100) | [``](/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> |

src/leetcode/outline/plan/codetop_list.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ headerDepth: 0
9191
| 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 |
9292
| 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 |
9393
| 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 |
9595
| 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 |
9696
| 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 |
9797
| 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
104104
| 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 |
105105
| 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 |
106106
| 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 |
108108
| 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 |
109109
| 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 |
110110
| 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
147147
| 剑指 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 |
148148
| 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 |
149149
| 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 |
151151
| 剑指 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 |
152152
| 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 |
153153
| 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

Comments
 (0)