Skip to content

Commit f5e1ac6

Browse files
committed
add 735 872
1 parent 66db7dd commit f5e1ac6

33 files changed

+1507
-39
lines changed

src/.vuepress/sidebar.ts

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,6 +337,7 @@ export default sidebar({
337337
"0637",
338338
"0641",
339339
"0643",
340+
"0649",
340341
"0654",
341342
"0662",
342343
"0670",
@@ -361,6 +362,7 @@ export default sidebar({
361362
"0724",
362363
"0729",
363364
"0731",
365+
"0735",
364366
"0739",
365367
"0763",
366368
"0772",
@@ -375,6 +377,7 @@ export default sidebar({
375377
"0844",
376378
"0845",
377379
"0852",
380+
"0872",
378381
"0876",
379382
"0880",
380383
"0889"
@@ -388,6 +391,7 @@ export default sidebar({
388391
"0918",
389392
"0921",
390393
"0931",
394+
"0933",
391395
"0945",
392396
"0946",
393397
"0951",
@@ -505,13 +509,16 @@ export default sidebar({
505509
"collapsible": true,
506510
"children": [
507511
"2044",
508-
"2070"
512+
"2064",
513+
"2070",
514+
"2095"
509515
]
510516
},
511517
{
512518
"text": "2100-2199",
513519
"collapsible": true,
514520
"children": [
521+
"2130",
515522
"2196"
516523
]
517524
},
@@ -553,6 +560,7 @@ export default sidebar({
553560
"children": [
554561
"2501",
555562
"2530",
563+
"2563",
556564
"2583"
557565
]
558566
},

src/plan/contest_list.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1596,7 +1596,7 @@ headerDepth: 0
15961596
| 题号 | 标题 | 题解 | 标签 | 难度 | 力扣 |
15971597
| :------: | :------ | :------: | :------ | :------ | :------: |
15981598
| 2562 | 找出数组的串联值 | | [`数组`](/tag/array.md) [`双指针`](/tag/two-pointers.md) [`模拟`](/tag/simulation.md) | 🟢 | [🀄️](https://leetcode.cn/problems/find-the-array-concatenation-value) [🔗](https://leetcode.com/problems/find-the-array-concatenation-value) |
1599-
| 2563 | 统计公平数对的数目 | | [`数组`](/tag/array.md) [`双指针`](/tag/two-pointers.md) [`二分查找`](/tag/binary-search.md) `1+` | 🟠 | [🀄️](https://leetcode.cn/problems/count-the-number-of-fair-pairs) [🔗](https://leetcode.com/problems/count-the-number-of-fair-pairs) |
1599+
| 2563 | 统计公平数对的数目 | [[✓]](/problem/2563.md) | [`数组`](/tag/array.md) [`双指针`](/tag/two-pointers.md) [`二分查找`](/tag/binary-search.md) `1+` | 🟠 | [🀄️](https://leetcode.cn/problems/count-the-number-of-fair-pairs) [🔗](https://leetcode.com/problems/count-the-number-of-fair-pairs) |
16001600
| 2564 | 子字符串异或查询 | | [`位运算`](/tag/bit-manipulation.md) [`数组`](/tag/array.md) [`哈希表`](/tag/hash-table.md) `1+` | 🟠 | [🀄️](https://leetcode.cn/problems/substring-xor-queries) [🔗](https://leetcode.com/problems/substring-xor-queries) |
16011601
| 2565 | 最少得分子序列 | | [`双指针`](/tag/two-pointers.md) [`字符串`](/tag/string.md) [`二分查找`](/tag/binary-search.md) | 🔴 | [🀄️](https://leetcode.cn/problems/subsequence-with-the-minimum-score) [🔗](https://leetcode.com/problems/subsequence-with-the-minimum-score) |
16021602

@@ -2628,7 +2628,7 @@ headerDepth: 0
26282628
| 题号 | 标题 | 题解 | 标签 | 难度 | 力扣 |
26292629
| :------: | :------ | :------: | :------ | :------ | :------: |
26302630
| 2129 | 将标题首字母大写 | | [`字符串`](/tag/string.md) | 🟢 | [🀄️](https://leetcode.cn/problems/capitalize-the-title) [🔗](https://leetcode.com/problems/capitalize-the-title) |
2631-
| 2130 | 链表最大孪生和 | | [`栈`](/tag/stack.md) [`链表`](/tag/linked-list.md) [`双指针`](/tag/two-pointers.md) | 🟠 | [🀄️](https://leetcode.cn/problems/maximum-twin-sum-of-a-linked-list) [🔗](https://leetcode.com/problems/maximum-twin-sum-of-a-linked-list) |
2631+
| 2130 | 链表最大孪生和 | [[✓]](/problem/2130.md) | [`栈`](/tag/stack.md) [`链表`](/tag/linked-list.md) [`双指针`](/tag/two-pointers.md) | 🟠 | [🀄️](https://leetcode.cn/problems/maximum-twin-sum-of-a-linked-list) [🔗](https://leetcode.com/problems/maximum-twin-sum-of-a-linked-list) |
26322632
| 2131 | 连接两字母单词得到的最长回文串 | | [`贪心`](/tag/greedy.md) [`数组`](/tag/array.md) [`哈希表`](/tag/hash-table.md) `2+` | 🟠 | [🀄️](https://leetcode.cn/problems/longest-palindrome-by-concatenating-two-letter-words) [🔗](https://leetcode.com/problems/longest-palindrome-by-concatenating-two-letter-words) |
26332633
| 2132 | 用邮票贴满网格图 | | [`贪心`](/tag/greedy.md) [`数组`](/tag/array.md) [`矩阵`](/tag/matrix.md) `1+` | 🔴 | [🀄️](https://leetcode.cn/problems/stamping-the-grid) [🔗](https://leetcode.com/problems/stamping-the-grid) |
26342634

@@ -2712,7 +2712,7 @@ headerDepth: 0
27122712
| 题号 | 标题 | 题解 | 标签 | 难度 | 力扣 |
27132713
| :------: | :------ | :------: | :------ | :------ | :------: |
27142714
| 2094 | 找出 3 位偶数 | | [`数组`](/tag/array.md) [`哈希表`](/tag/hash-table.md) [`枚举`](/tag/enumeration.md) `1+` | 🟢 | [🀄️](https://leetcode.cn/problems/finding-3-digit-even-numbers) [🔗](https://leetcode.com/problems/finding-3-digit-even-numbers) |
2715-
| 2095 | 删除链表的中间节点 | | [`链表`](/tag/linked-list.md) [`双指针`](/tag/two-pointers.md) | 🟠 | [🀄️](https://leetcode.cn/problems/delete-the-middle-node-of-a-linked-list) [🔗](https://leetcode.com/problems/delete-the-middle-node-of-a-linked-list) |
2715+
| 2095 | 删除链表的中间节点 | [[✓]](/problem/2095.md) | [`链表`](/tag/linked-list.md) [`双指针`](/tag/two-pointers.md) | 🟠 | [🀄️](https://leetcode.cn/problems/delete-the-middle-node-of-a-linked-list) [🔗](https://leetcode.com/problems/delete-the-middle-node-of-a-linked-list) |
27162716
| 2096 | 从二叉树一个节点到另一个节点每一步的方向 | | [`树`](/tag/tree.md) [`深度优先搜索`](/tag/depth-first-search.md) [`字符串`](/tag/string.md) `1+` | 🟠 | [🀄️](https://leetcode.cn/problems/step-by-step-directions-from-a-binary-tree-node-to-another) [🔗](https://leetcode.com/problems/step-by-step-directions-from-a-binary-tree-node-to-another) |
27172717
| 2097 | 合法重新排列数对 | | [`深度优先搜索`](/tag/depth-first-search.md) [`图`](/tag/graph.md) [`欧拉回路`](/tag/eulerian-circuit.md) | 🔴 | [🀄️](https://leetcode.cn/problems/valid-arrangement-of-pairs) [🔗](https://leetcode.com/problems/valid-arrangement-of-pairs) |
27182718

@@ -2785,7 +2785,7 @@ headerDepth: 0
27852785
| :------: | :------ | :------: | :------ | :------ | :------: |
27862786
| 2062 | 统计字符串中的元音子字符串 | | [`哈希表`](/tag/hash-table.md) [`字符串`](/tag/string.md) | 🟢 | [🀄️](https://leetcode.cn/problems/count-vowel-substrings-of-a-string) [🔗](https://leetcode.com/problems/count-vowel-substrings-of-a-string) |
27872787
| 2063 | 所有子字符串中的元音 | | [`数学`](/tag/math.md) [`字符串`](/tag/string.md) [`动态规划`](/tag/dynamic-programming.md) `1+` | 🟠 | [🀄️](https://leetcode.cn/problems/vowels-of-all-substrings) [🔗](https://leetcode.com/problems/vowels-of-all-substrings) |
2788-
| 2064 | 分配给商店的最多商品的最小值 | | [`数组`](/tag/array.md) [`二分查找`](/tag/binary-search.md) | 🟠 | [🀄️](https://leetcode.cn/problems/minimized-maximum-of-products-distributed-to-any-store) [🔗](https://leetcode.com/problems/minimized-maximum-of-products-distributed-to-any-store) |
2788+
| 2064 | 分配给商店的最多商品的最小值 | [[✓]](/problem/2064.md) | [`数组`](/tag/array.md) [`二分查找`](/tag/binary-search.md) | 🟠 | [🀄️](https://leetcode.cn/problems/minimized-maximum-of-products-distributed-to-any-store) [🔗](https://leetcode.com/problems/minimized-maximum-of-products-distributed-to-any-store) |
27892789
| 2065 | 最大化一张图中的路径价值 | | [`图`](/tag/graph.md) [`数组`](/tag/array.md) [`回溯`](/tag/backtracking.md) | 🔴 | [🀄️](https://leetcode.cn/problems/maximum-path-quality-of-a-graph) [🔗](https://leetcode.com/problems/maximum-path-quality-of-a-graph) |
27902790

27912791

@@ -5435,7 +5435,7 @@ headerDepth: 0
54355435
<!-- prettier-ignore -->
54365436
| 题号 | 标题 | 题解 | 标签 | 难度 | 力扣 |
54375437
| :------: | :------ | :------: | :------ | :------ | :------: |
5438-
| 933 | 最近的请求次数 | | [`设计`](/tag/design.md) [`队列`](/tag/queue.md) [`数据流`](/tag/data-stream.md) | 🟢 | [🀄️](https://leetcode.cn/problems/number-of-recent-calls) [🔗](https://leetcode.com/problems/number-of-recent-calls) |
5438+
| 933 | 最近的请求次数 | [[✓]](/problem/0933.md) | [`设计`](/tag/design.md) [`队列`](/tag/queue.md) [`数据流`](/tag/data-stream.md) | 🟢 | [🀄️](https://leetcode.cn/problems/number-of-recent-calls) [🔗](https://leetcode.com/problems/number-of-recent-calls) |
54395439
| 935 | 骑士拨号器 | | [`动态规划`](/tag/dynamic-programming.md) | 🟠 | [🀄️](https://leetcode.cn/problems/knight-dialer) [🔗](https://leetcode.com/problems/knight-dialer) |
54405440
| 934 | 最短的桥 | | [`深度优先搜索`](/tag/depth-first-search.md) [`广度优先搜索`](/tag/breadth-first-search.md) [`数组`](/tag/array.md) `1+` | 🟠 | [🀄️](https://leetcode.cn/problems/shortest-bridge) [🔗](https://leetcode.com/problems/shortest-bridge) |
54415441
| 936 | 戳印序列 | | [`栈`](/tag/stack.md) [`贪心`](/tag/greedy.md) [`队列`](/tag/queue.md) `1+` | 🔴 | [🀄️](https://leetcode.cn/problems/stamping-the-sequence) [🔗](https://leetcode.com/problems/stamping-the-sequence) |
@@ -5615,7 +5615,7 @@ headerDepth: 0
56155615
<!-- prettier-ignore -->
56165616
| 题号 | 标题 | 题解 | 标签 | 难度 | 力扣 |
56175617
| :------: | :------ | :------: | :------ | :------ | :------: |
5618-
| 872 | 叶子相似的树 | | [`树`](/tag/tree.md) [`深度优先搜索`](/tag/depth-first-search.md) [`二叉树`](/tag/binary-tree.md) | 🟢 | [🀄️](https://leetcode.cn/problems/leaf-similar-trees) [🔗](https://leetcode.com/problems/leaf-similar-trees) |
5618+
| 872 | 叶子相似的树 | [[✓]](/problem/0872.md) | [`树`](/tag/tree.md) [`深度优先搜索`](/tag/depth-first-search.md) [`二叉树`](/tag/binary-tree.md) | 🟢 | [🀄️](https://leetcode.cn/problems/leaf-similar-trees) [🔗](https://leetcode.com/problems/leaf-similar-trees) |
56195619
| 874 | 模拟行走机器人 | | [`数组`](/tag/array.md) [`哈希表`](/tag/hash-table.md) [`模拟`](/tag/simulation.md) | 🟠 | [🀄️](https://leetcode.cn/problems/walking-robot-simulation) [🔗](https://leetcode.com/problems/walking-robot-simulation) |
56205620
| 875 | 爱吃香蕉的珂珂 | | [`数组`](/tag/array.md) [`二分查找`](/tag/binary-search.md) | 🟠 | [🀄️](https://leetcode.cn/problems/koko-eating-bananas) [🔗](https://leetcode.com/problems/koko-eating-bananas) |
56215621
| 873 | 最长的斐波那契子序列的长度 | | [`数组`](/tag/array.md) [`哈希表`](/tag/hash-table.md) [`动态规划`](/tag/dynamic-programming.md) | 🟠 | [🀄️](https://leetcode.cn/problems/length-of-longest-fibonacci-subsequence) [🔗](https://leetcode.com/problems/length-of-longest-fibonacci-subsequence) |

src/problem/0019.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,4 +147,4 @@ var removeNthFromEnd = function (head, n) {
147147
| :------: | :------ | :------: | :------ | :------ | :------: |
148148
| 1474 | 删除链表 M 个节点之后的 N 个节点 🔒 | | [`链表`](/tag/linked-list.md) | 🟢 | [🀄️](https://leetcode.cn/problems/delete-n-nodes-after-m-nodes-of-a-linked-list) [🔗](https://leetcode.com/problems/delete-n-nodes-after-m-nodes-of-a-linked-list) |
149149
| 1721 | 交换链表中的节点 | | [`链表`](/tag/linked-list.md) [`双指针`](/tag/two-pointers.md) | 🟠 | [🀄️](https://leetcode.cn/problems/swapping-nodes-in-a-linked-list) [🔗](https://leetcode.com/problems/swapping-nodes-in-a-linked-list) |
150-
| 2095 | 删除链表的中间节点 | | [`链表`](/tag/linked-list.md) [`双指针`](/tag/two-pointers.md) | 🟠 | [🀄️](https://leetcode.cn/problems/delete-the-middle-node-of-a-linked-list) [🔗](https://leetcode.com/problems/delete-the-middle-node-of-a-linked-list) |
150+
| 2095 | 删除链表的中间节点 | [[]](/problem/2095.md) | [`链表`](/tag/linked-list.md) [`双指针`](/tag/two-pointers.md) | 🟠 | [🀄️](https://leetcode.cn/problems/delete-the-middle-node-of-a-linked-list) [🔗](https://leetcode.com/problems/delete-the-middle-node-of-a-linked-list) |

src/problem/0143.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,5 +115,5 @@ var reorderList = function (head) {
115115
<!-- prettier-ignore -->
116116
| 题号 | 标题 | 题解 | 标签 | 难度 | 力扣 |
117117
| :------: | :------ | :------: | :------ | :------ | :------: |
118-
| 2095 | 删除链表的中间节点 | | [`链表`](/tag/linked-list.md) [`双指针`](/tag/two-pointers.md) | 🟠 | [🀄️](https://leetcode.cn/problems/delete-the-middle-node-of-a-linked-list) [🔗](https://leetcode.com/problems/delete-the-middle-node-of-a-linked-list) |
118+
| 2095 | 删除链表的中间节点 | [[✓]](/problem/2095.md) | [`链表`](/tag/linked-list.md) [`双指针`](/tag/two-pointers.md) | 🟠 | [🀄️](https://leetcode.cn/problems/delete-the-middle-node-of-a-linked-list) [🔗](https://leetcode.com/problems/delete-the-middle-node-of-a-linked-list) |
119119
| 2516 | 每种字符至少取 K 个 | | [`哈希表`](/tag/hash-table.md) [`字符串`](/tag/string.md) [`滑动窗口`](/tag/sliding-window.md) | 🟠 | [🀄️](https://leetcode.cn/problems/take-k-of-each-character-from-left-and-right) [🔗](https://leetcode.com/problems/take-k-of-each-character-from-left-and-right) |

src/problem/0203.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ var removeElements = function (head, val) {
8484
| :------: | :------ | :------: | :------ | :------ | :------: |
8585
| 27 | 移除元素 | [[]](/problem/0027.md) | [`数组`](/tag/array.md) [`双指针`](/tag/two-pointers.md) | 🟢 | [🀄️](https://leetcode.cn/problems/remove-element) [🔗](https://leetcode.com/problems/remove-element) |
8686
| 237 | 删除链表中的节点 | [[]](/problem/0237.md) | [`链表`](/tag/linked-list.md) | 🟠 | [🀄️](https://leetcode.cn/problems/delete-node-in-a-linked-list) [🔗](https://leetcode.com/problems/delete-node-in-a-linked-list) |
87-
| 2095 | 删除链表的中间节点 | | [`链表`](/tag/linked-list.md) [`双指针`](/tag/two-pointers.md) | 🟠 | [🀄️](https://leetcode.cn/problems/delete-the-middle-node-of-a-linked-list) [🔗](https://leetcode.com/problems/delete-the-middle-node-of-a-linked-list) |
87+
| 2095 | 删除链表的中间节点 | [[]](/problem/2095.md) | [`链表`](/tag/linked-list.md) [`双指针`](/tag/two-pointers.md) | 🟠 | [🀄️](https://leetcode.cn/problems/delete-the-middle-node-of-a-linked-list) [🔗](https://leetcode.com/problems/delete-the-middle-node-of-a-linked-list) |
8888
| 3217 | 从链表中移除在数组中存在的节点 | | [`数组`](/tag/array.md) [`哈希表`](/tag/hash-table.md) [`链表`](/tag/linked-list.md) | 🟠 | [🀄️](https://leetcode.cn/problems/delete-nodes-from-linked-list-present-in-array) [🔗](https://leetcode.com/problems/delete-nodes-from-linked-list-present-in-array) |
8989
| 3263 | 将双链表转换为数组 I 🔒 | | [`数组`](/tag/array.md) [`链表`](/tag/linked-list.md) [`双向链表`](/tag/doubly-linked-list.md) | 🟢 | [🀄️](https://leetcode.cn/problems/convert-doubly-linked-list-to-array-i) [🔗](https://leetcode.com/problems/convert-doubly-linked-list-to-array-i) |
9090
| 3294 | 将双链表转换为数组 II 🔒 | | [`数组`](/tag/array.md) [`链表`](/tag/linked-list.md) [`双向链表`](/tag/doubly-linked-list.md) | 🟠 | [🀄️](https://leetcode.cn/problems/convert-doubly-linked-list-to-array-ii) [🔗](https://leetcode.com/problems/convert-doubly-linked-list-to-array-ii) |

src/problem/0206.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,6 @@ var reverseList = function (head) {
131131
| 156 | 上下翻转二叉树 🔒 | [[]](/problem/0156.md) | [``](/tag/tree.md) [`深度优先搜索`](/tag/depth-first-search.md) [`二叉树`](/tag/binary-tree.md) | 🟠 | [🀄️](https://leetcode.cn/problems/binary-tree-upside-down) [🔗](https://leetcode.com/problems/binary-tree-upside-down) |
132132
| 234 | 回文链表 | [[]](/problem/0234.md) | [``](/tag/stack.md) [`递归`](/tag/recursion.md) [`链表`](/tag/linked-list.md) `1+` | 🟢 | [🀄️](https://leetcode.cn/problems/palindrome-linked-list) [🔗](https://leetcode.com/problems/palindrome-linked-list) |
133133
| 2074 | 反转偶数长度组的节点 | | [`链表`](/tag/linked-list.md) | 🟠 | [🀄️](https://leetcode.cn/problems/reverse-nodes-in-even-length-groups) [🔗](https://leetcode.com/problems/reverse-nodes-in-even-length-groups) |
134-
| 2130 | 链表最大孪生和 | | [``](/tag/stack.md) [`链表`](/tag/linked-list.md) [`双指针`](/tag/two-pointers.md) | 🟠 | [🀄️](https://leetcode.cn/problems/maximum-twin-sum-of-a-linked-list) [🔗](https://leetcode.com/problems/maximum-twin-sum-of-a-linked-list) |
134+
| 2130 | 链表最大孪生和 | [[]](/problem/2130.md) | [``](/tag/stack.md) [`链表`](/tag/linked-list.md) [`双指针`](/tag/two-pointers.md) | 🟠 | [🀄️](https://leetcode.cn/problems/maximum-twin-sum-of-a-linked-list) [🔗](https://leetcode.com/problems/maximum-twin-sum-of-a-linked-list) |
135135
| 2487 | 从链表中移除节点 | | [``](/tag/stack.md) [`递归`](/tag/recursion.md) [`链表`](/tag/linked-list.md) `1+` | 🟠 | [🀄️](https://leetcode.cn/problems/remove-nodes-from-linked-list) [🔗](https://leetcode.com/problems/remove-nodes-from-linked-list) |
136136
| 2807 | 在链表中插入最大公约数 | | [`链表`](/tag/linked-list.md) [`数学`](/tag/math.md) [`数论`](/tag/number-theory.md) | 🟠 | [🀄️](https://leetcode.cn/problems/insert-greatest-common-divisors-in-linked-list) [🔗](https://leetcode.com/problems/insert-greatest-common-divisors-in-linked-list) |

src/problem/0234.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,4 +107,4 @@ var isPalindrome = function (head) {
107107
| 9 | 回文数 | [[]](/problem/0009.md) | [`数学`](/tag/math.md) | 🟢 | [🀄️](https://leetcode.cn/problems/palindrome-number) [🔗](https://leetcode.com/problems/palindrome-number) |
108108
| 125 | 验证回文串 | [[]](/problem/0125.md) | [`双指针`](/tag/two-pointers.md) [`字符串`](/tag/string.md) | 🟢 | [🀄️](https://leetcode.cn/problems/valid-palindrome) [🔗](https://leetcode.com/problems/valid-palindrome) |
109109
| 206 | 反转链表 | [[]](/problem/0206.md) | [`递归`](/tag/recursion.md) [`链表`](/tag/linked-list.md) | 🟢 | [🀄️](https://leetcode.cn/problems/reverse-linked-list) [🔗](https://leetcode.com/problems/reverse-linked-list) |
110-
| 2130 | 链表最大孪生和 | | [``](/tag/stack.md) [`链表`](/tag/linked-list.md) [`双指针`](/tag/two-pointers.md) | 🟠 | [🀄️](https://leetcode.cn/problems/maximum-twin-sum-of-a-linked-list) [🔗](https://leetcode.com/problems/maximum-twin-sum-of-a-linked-list) |
110+
| 2130 | 链表最大孪生和 | [[]](/problem/2130.md) | [``](/tag/stack.md) [`链表`](/tag/linked-list.md) [`双指针`](/tag/two-pointers.md) | 🟠 | [🀄️](https://leetcode.cn/problems/maximum-twin-sum-of-a-linked-list) [🔗](https://leetcode.com/problems/maximum-twin-sum-of-a-linked-list) |

src/problem/0605.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,4 +131,4 @@ var canPlaceFlowers = function (flowerbed, n) {
131131
| 题号 | 标题 | 题解 | 标签 | 难度 | 力扣 |
132132
| :------: | :------ | :------: | :------ | :------ | :------: |
133133
| 495 | 提莫攻击 | | [`数组`](/tag/array.md) [`模拟`](/tag/simulation.md) | 🟢 | [🀄️](https://leetcode.cn/problems/teemo-attacking) [🔗](https://leetcode.com/problems/teemo-attacking) |
134-
| 735 | 小行星碰撞 | | [``](/tag/stack.md) [`数组`](/tag/array.md) [`模拟`](/tag/simulation.md) | 🟠 | [🀄️](https://leetcode.cn/problems/asteroid-collision) [🔗](https://leetcode.com/problems/asteroid-collision) |
134+
| 735 | 小行星碰撞 | [[]](/problem/0735.md) | [``](/tag/stack.md) [`数组`](/tag/array.md) [`模拟`](/tag/simulation.md) | 🟠 | [🀄️](https://leetcode.cn/problems/asteroid-collision) [🔗](https://leetcode.com/problems/asteroid-collision) |

0 commit comments

Comments
 (0)