Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 3073c85

Browse filesBrowse files
committed
Deploying to main from @ 0dd1e96 🚀
1 parent 50a8c2c commit 3073c85
Copy full SHA for 3073c85

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Dismiss banner
Expand file treeCollapse file tree

44 files changed

+1926
-50
lines changed

‎book/bit.md

Copy file name to clipboardExpand all lines: book/bit.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
| 338 | 比特位计数 | [[]](/problem/0338.md) | [`位运算`](/tag/bit-manipulation.md) [`动态规划`](/tag/dynamic-programming.md) | 🟢 | [🀄️](https://leetcode.cn/problems/counting-bits) [🔗](https://leetcode.com/problems/counting-bits) |
2222
| 136 | 只出现一次的数字 | [[]](/problem/0136.md) | [`位运算`](/tag/bit-manipulation.md) [`数组`](/tag/array.md) | 🟢 | [🀄️](https://leetcode.cn/problems/single-number) [🔗](https://leetcode.com/problems/single-number) |
2323
| 137 | 只出现一次的数字 II | [[]](/problem/0137.md) | [`位运算`](/tag/bit-manipulation.md) [`数组`](/tag/array.md) | 🟠 | [🀄️](https://leetcode.cn/problems/single-number-ii) [🔗](https://leetcode.com/problems/single-number-ii) |
24-
| 260 | 只出现一次的数字 III | | [`位运算`](/tag/bit-manipulation.md) [`数组`](/tag/array.md) | 🟠 | [🀄️](https://leetcode.cn/problems/single-number-iii) [🔗](https://leetcode.com/problems/single-number-iii) |
24+
| 260 | 只出现一次的数字 III | [[]](/problem/0260.md) | [`位运算`](/tag/bit-manipulation.md) [`数组`](/tag/array.md) | 🟠 | [🀄️](https://leetcode.cn/problems/single-number-iii) [🔗](https://leetcode.com/problems/single-number-iii) |
2525
| 268 | 丢失的数字 | [[]](/problem/0268.md) | [`位运算`](/tag/bit-manipulation.md) [`数组`](/tag/array.md) [`哈希表`](/tag/hash-table.md) `3+` | 🟢 | [🀄️](https://leetcode.cn/problems/missing-number) [🔗](https://leetcode.com/problems/missing-number) |
2626
| 1349 | 参加考试的最大学生数 | | [`位运算`](/tag/bit-manipulation.md) [`数组`](/tag/array.md) [`动态规划`](/tag/dynamic-programming.md) `2+` | 🔴 | [🀄️](https://leetcode.cn/problems/maximum-students-taking-exam) [🔗](https://leetcode.com/problems/maximum-students-taking-exam) |
2727
| 645 | 错误的集合 | [[]](/problem/0645.md) | [`位运算`](/tag/bit-manipulation.md) [`数组`](/tag/array.md) [`哈希表`](/tag/hash-table.md) `1+` | 🟢 | [🀄️](https://leetcode.cn/problems/set-mismatch) [🔗](https://leetcode.com/problems/set-mismatch) |

‎book/divide_conquer.md

Copy file name to clipboardExpand all lines: book/divide_conquer.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
| 4 | 寻找两个正序数组的中位数 | [[]](/problem/0004.md) | [`数组`](/tag/array.md) [`二分查找`](/tag/binary-search.md) [`分治`](/tag/divide-and-conquer.md) | 🔴 | [🀄️](https://leetcode.cn/problems/median-of-two-sorted-arrays) [🔗](https://leetcode.com/problems/median-of-two-sorted-arrays) |
1414
| 23 | 合并 K 个升序链表 | [[]](/problem/0023.md) | [`链表`](/tag/linked-list.md) [`分治`](/tag/divide-and-conquer.md) [`堆(优先队列)`](/tag/heap-priority-queue.md) `1+` | 🔴 | [🀄️](https://leetcode.cn/problems/merge-k-sorted-lists) [🔗](https://leetcode.com/problems/merge-k-sorted-lists) |
1515
| 53 | 最大子数组和 | [[]](/problem/0053.md) | [`数组`](/tag/array.md) [`分治`](/tag/divide-and-conquer.md) [`动态规划`](/tag/dynamic-programming.md) | 🟠 | [🀄️](https://leetcode.cn/problems/maximum-subarray) [🔗](https://leetcode.com/problems/maximum-subarray) |
16-
| 241 | 为运算表达式设计优先级 | | [`递归`](/tag/recursion.md) [`记忆化搜索`](/tag/memoization.md) [`数学`](/tag/math.md) `2+` | 🟠 | [🀄️](https://leetcode.cn/problems/different-ways-to-add-parentheses) [🔗](https://leetcode.com/problems/different-ways-to-add-parentheses) |
16+
| 241 | 为运算表达式设计优先级 | [[]](/problem/0241.md) | [`递归`](/tag/recursion.md) [`记忆化搜索`](/tag/memoization.md) [`数学`](/tag/math.md) `2+` | 🟠 | [🀄️](https://leetcode.cn/problems/different-ways-to-add-parentheses) [🔗](https://leetcode.com/problems/different-ways-to-add-parentheses) |
1717
| 169 | 多数元素 | [[]](/problem/0169.md) | [`数组`](/tag/array.md) [`哈希表`](/tag/hash-table.md) [`分治`](/tag/divide-and-conquer.md) `2+` | 🟢 | [🀄️](https://leetcode.cn/problems/majority-element) [🔗](https://leetcode.com/problems/majority-element) |
1818
| 50 | Pow(x, n) | [[]](/problem/0050.md) | [`递归`](/tag/recursion.md) [`数学`](/tag/math.md) | 🟠 | [🀄️](https://leetcode.cn/problems/powx-n) [🔗](https://leetcode.com/problems/powx-n) |
1919
| 14 | 最长公共前缀 | [[]](/problem/0014.md) | [`字典树`](/tag/trie.md) [`字符串`](/tag/string.md) | 🟢 | [🀄️](https://leetcode.cn/problems/longest-common-prefix) [🔗](https://leetcode.com/problems/longest-common-prefix) |

‎book/greedy.md

Copy file name to clipboardExpand all lines: book/greedy.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
| 1710 | 卡车上的最大单元数 | [[]](/problem/1710.md) | [`贪心`](/tag/greedy.md) [`数组`](/tag/array.md) [`排序`](/tag/sorting.md) | 🟢 | [🀄️](https://leetcode.cn/problems/maximum-units-on-a-truck) [🔗](https://leetcode.com/problems/maximum-units-on-a-truck) |
3636
| 1217 | 玩筹码 | [[]](/problem/1217.md) | [`贪心`](/tag/greedy.md) [`数组`](/tag/array.md) [`数学`](/tag/math.md) | 🟢 | [🀄️](https://leetcode.cn/problems/minimum-cost-to-move-chips-to-the-same-position) [🔗](https://leetcode.com/problems/minimum-cost-to-move-chips-to-the-same-position) |
3737
| 1247 | 交换字符使得字符串相同 | | [`贪心`](/tag/greedy.md) [`数学`](/tag/math.md) [`字符串`](/tag/string.md) | 🟠 | [🀄️](https://leetcode.cn/problems/minimum-swaps-to-make-strings-equal) [🔗](https://leetcode.com/problems/minimum-swaps-to-make-strings-equal) |
38-
| 1400 | 构造 K 个回文字符串 | | [`贪心`](/tag/greedy.md) [`哈希表`](/tag/hash-table.md) [`字符串`](/tag/string.md) `1+` | 🟠 | [🀄️](https://leetcode.cn/problems/construct-k-palindrome-strings) [🔗](https://leetcode.com/problems/construct-k-palindrome-strings) |
38+
| 1400 | 构造 K 个回文字符串 | [[]](/problem/1400.md) | [`贪心`](/tag/greedy.md) [`哈希表`](/tag/hash-table.md) [`字符串`](/tag/string.md) `1+` | 🟠 | [🀄️](https://leetcode.cn/problems/construct-k-palindrome-strings) [🔗](https://leetcode.com/problems/construct-k-palindrome-strings) |
3939
| 921 | 使括号有效的最少添加 | [[]](/problem/0921.md) | [``](/tag/stack.md) [`贪心`](/tag/greedy.md) [`字符串`](/tag/string.md) | 🟠 | [🀄️](https://leetcode.cn/problems/minimum-add-to-make-parentheses-valid) [🔗](https://leetcode.com/problems/minimum-add-to-make-parentheses-valid) |
4040
| 1029 | 两地调度 | | [`贪心`](/tag/greedy.md) [`数组`](/tag/array.md) [`排序`](/tag/sorting.md) | 🟠 | [🀄️](https://leetcode.cn/problems/two-city-scheduling) [🔗](https://leetcode.com/problems/two-city-scheduling) |
4141
| 1605 | 给定行和列的和求可行矩阵 | | [`贪心`](/tag/greedy.md) [`数组`](/tag/array.md) [`矩阵`](/tag/matrix.md) | 🟠 | [🀄️](https://leetcode.cn/problems/find-valid-matrix-given-row-and-column-sums) [🔗](https://leetcode.com/problems/find-valid-matrix-given-row-and-column-sums) |

‎plan/company_list.md

Copy file name to clipboardExpand all lines: plan/company_list.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ headerDepth: 0
3838
| 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 |
3939
| 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 |
4040
| 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 |
41-
| 284 | 窥视迭代器 | | [`设计`](/tag/design.md) [`数组`](/tag/array.md) [`迭代器`](/tag/iterator.md) | 🟠 | [🀄️](https://leetcode.cn/problems/peeking-iterator) [🔗](https://leetcode.com/problems/peeking-iterator) | 11 |
41+
| 284 | 窥视迭代器 | [[]](/problem/0284.md) | [`设计`](/tag/design.md) [`数组`](/tag/array.md) [`迭代器`](/tag/iterator.md) | 🟠 | [🀄️](https://leetcode.cn/problems/peeking-iterator) [🔗](https://leetcode.com/problems/peeking-iterator) | 11 |
4242
| 1353 | 最多可以参加的会议数目 | | [`贪心`](/tag/greedy.md) [`数组`](/tag/array.md) [`排序`](/tag/sorting.md) `1+` | 🟠 | [🀄️](https://leetcode.cn/problems/maximum-number-of-events-that-can-be-attended) [🔗](https://leetcode.com/problems/maximum-number-of-events-that-can-be-attended) | 11 |
4343
| 1406 | 石子游戏 III | | [`数组`](/tag/array.md) [`数学`](/tag/math.md) [`动态规划`](/tag/dynamic-programming.md) `1+` | 🔴 | [🀄️](https://leetcode.cn/problems/stone-game-iii) [🔗](https://leetcode.com/problems/stone-game-iii) | 10 |
4444
| 1197 | 进击的骑士 🔒 | | [`广度优先搜索`](/tag/breadth-first-search.md) | 🟠 | [🀄️](https://leetcode.cn/problems/minimum-knight-moves) [🔗](https://leetcode.com/problems/minimum-knight-moves) | 10 |

‎plan/contest_list.md

Copy file name to clipboardExpand all lines: plan/contest_list.md
+6-6Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ headerDepth: 0
252252
| 题号 | 标题 | 题解 | 标签 | 难度 | 力扣 |
253253
| :------: | :------ | :------: | :------ | :------: | :------: |
254254
| 3222 | 求出硬币游戏的赢家 | | [`数学`](/tag/math.md) [`博弈`](/tag/game-theory.md) [`模拟`](/tag/simulation.md) | 🟢 | [🀄️](https://leetcode.cn/problems/find-the-winning-player-in-coin-game) [🔗](https://leetcode.com/problems/find-the-winning-player-in-coin-game) |
255-
| 3223 | 操作后字符串的最短长度 | | [`哈希表`](/tag/hash-table.md) [`字符串`](/tag/string.md) [`计数`](/tag/counting.md) | 🟠 | [🀄️](https://leetcode.cn/problems/minimum-length-of-string-after-operations) [🔗](https://leetcode.com/problems/minimum-length-of-string-after-operations) |
255+
| 3223 | 操作后字符串的最短长度 | [[✓]](/problem/3223.md) | [`哈希表`](/tag/hash-table.md) [`字符串`](/tag/string.md) [`计数`](/tag/counting.md) | 🟠 | [🀄️](https://leetcode.cn/problems/minimum-length-of-string-after-operations) [🔗](https://leetcode.com/problems/minimum-length-of-string-after-operations) |
256256
| 3224 | 使差值相等的最少数组改动次数 | | [`数组`](/tag/array.md) [`哈希表`](/tag/hash-table.md) [`前缀和`](/tag/prefix-sum.md) | 🟠 | [🀄️](https://leetcode.cn/problems/minimum-array-changes-to-make-differences-equal) [🔗](https://leetcode.com/problems/minimum-array-changes-to-make-differences-equal) |
257257
| 3225 | 网格图操作后的最大分数 | | [`数组`](/tag/array.md) [`动态规划`](/tag/dynamic-programming.md) [`矩阵`](/tag/matrix.md) `1+` | 🔴 | [🀄️](https://leetcode.cn/problems/maximum-score-from-grid-operations) [🔗](https://leetcode.com/problems/maximum-score-from-grid-operations) |
258258

@@ -1404,7 +1404,7 @@ headerDepth: 0
14041404
| 题号 | 标题 | 题解 | 标签 | 难度 | 力扣 |
14051405
| :------: | :------ | :------: | :------ | :------: | :------: |
14061406
| 2656 | K 个元素的最大和 | | [`贪心`](/tag/greedy.md) [`数组`](/tag/array.md) | 🟢 | [🀄️](https://leetcode.cn/problems/maximum-sum-with-exactly-k-elements) [🔗](https://leetcode.com/problems/maximum-sum-with-exactly-k-elements) |
1407-
| 2657 | 找到两个数组的前缀公共数组 | | [`位运算`](/tag/bit-manipulation.md) [`数组`](/tag/array.md) [`哈希表`](/tag/hash-table.md) | 🟠 | [🀄️](https://leetcode.cn/problems/find-the-prefix-common-array-of-two-arrays) [🔗](https://leetcode.com/problems/find-the-prefix-common-array-of-two-arrays) |
1407+
| 2657 | 找到两个数组的前缀公共数组 | [[✓]](/problem/2657.md) | [`位运算`](/tag/bit-manipulation.md) [`数组`](/tag/array.md) [`哈希表`](/tag/hash-table.md) | 🟠 | [🀄️](https://leetcode.cn/problems/find-the-prefix-common-array-of-two-arrays) [🔗](https://leetcode.com/problems/find-the-prefix-common-array-of-two-arrays) |
14081408
| 2658 | 网格图中鱼的最大数目 | | [`深度优先搜索`](/tag/depth-first-search.md) [`广度优先搜索`](/tag/breadth-first-search.md) [`并查集`](/tag/union-find.md) `2+` | 🟠 | [🀄️](https://leetcode.cn/problems/maximum-number-of-fish-in-a-grid) [🔗](https://leetcode.com/problems/maximum-number-of-fish-in-a-grid) |
14091409
| 2659 | 将数组清空 | | [`贪心`](/tag/greedy.md) [`树状数组`](/tag/binary-indexed-tree.md) [`线段树`](/tag/segment-tree.md) `4+` | 🔴 | [🀄️](https://leetcode.cn/problems/make-array-empty) [🔗](https://leetcode.com/problems/make-array-empty) |
14101410

@@ -1933,7 +1933,7 @@ headerDepth: 0
19331933
| :------: | :------ | :------: | :------ | :------: | :------: |
19341934
| 2427 | 公因子的数目 | | [`数学`](/tag/math.md) [`枚举`](/tag/enumeration.md) [`数论`](/tag/number-theory.md) | 🟢 | [🀄️](https://leetcode.cn/problems/number-of-common-factors) [🔗](https://leetcode.com/problems/number-of-common-factors) |
19351935
| 2428 | 沙漏的最大总和 | | [`数组`](/tag/array.md) [`矩阵`](/tag/matrix.md) [`前缀和`](/tag/prefix-sum.md) | 🟠 | [🀄️](https://leetcode.cn/problems/maximum-sum-of-an-hourglass) [🔗](https://leetcode.com/problems/maximum-sum-of-an-hourglass) |
1936-
| 2429 | 最小异或 | | [`贪心`](/tag/greedy.md) [`位运算`](/tag/bit-manipulation.md) | 🟠 | [🀄️](https://leetcode.cn/problems/minimize-xor) [🔗](https://leetcode.com/problems/minimize-xor) |
1936+
| 2429 | 最小异或 | [[✓]](/problem/2429.md) | [`贪心`](/tag/greedy.md) [`位运算`](/tag/bit-manipulation.md) | 🟠 | [🀄️](https://leetcode.cn/problems/minimize-xor) [🔗](https://leetcode.com/problems/minimize-xor) |
19371937
| 2430 | 对字母串可执行的最大删除数 | | [`字符串`](/tag/string.md) [`动态规划`](/tag/dynamic-programming.md) [`字符串匹配`](/tag/string-matching.md) `2+` | 🔴 | [🀄️](https://leetcode.cn/problems/maximum-deletions-on-a-string) [🔗](https://leetcode.com/problems/maximum-deletions-on-a-string) |
19381938

19391939

@@ -1945,7 +1945,7 @@ headerDepth: 0
19451945
| :------: | :------ | :------: | :------ | :------: | :------: |
19461946
| 2423 | 删除字符使频率相同 | | [`哈希表`](/tag/hash-table.md) [`字符串`](/tag/string.md) [`计数`](/tag/counting.md) | 🟢 | [🀄️](https://leetcode.cn/problems/remove-letter-to-equalize-frequency) [🔗](https://leetcode.com/problems/remove-letter-to-equalize-frequency) |
19471947
| 2424 | 最长上传前缀 | | [`并查集`](/tag/union-find.md) [`设计`](/tag/design.md) [`树状数组`](/tag/binary-indexed-tree.md) `4+` | 🟠 | [🀄️](https://leetcode.cn/problems/longest-uploaded-prefix) [🔗](https://leetcode.com/problems/longest-uploaded-prefix) |
1948-
| 2425 | 所有数对的异或和 | | [`位运算`](/tag/bit-manipulation.md) [`脑筋急转弯`](/tag/brainteaser.md) [`数组`](/tag/array.md) | 🟠 | [🀄️](https://leetcode.cn/problems/bitwise-xor-of-all-pairings) [🔗](https://leetcode.com/problems/bitwise-xor-of-all-pairings) |
1948+
| 2425 | 所有数对的异或和 | [[✓]](/problem/2425.md) | [`位运算`](/tag/bit-manipulation.md) [`脑筋急转弯`](/tag/brainteaser.md) [`数组`](/tag/array.md) | 🟠 | [🀄️](https://leetcode.cn/problems/bitwise-xor-of-all-pairings) [🔗](https://leetcode.com/problems/bitwise-xor-of-all-pairings) |
19491949
| 2426 | 满足不等式的数对数目 | | [`树状数组`](/tag/binary-indexed-tree.md) [`线段树`](/tag/segment-tree.md) [`数组`](/tag/array.md) `4+` | 🔴 | [🀄️](https://leetcode.cn/problems/number-of-pairs-satisfying-inequality) [🔗](https://leetcode.com/problems/number-of-pairs-satisfying-inequality) |
19501950

19511951

@@ -2665,7 +2665,7 @@ headerDepth: 0
26652665
| :------: | :------ | :------: | :------ | :------: | :------: |
26662666
| 2114 | 句子中的最多单词数 | [[✓]](/problem/2114.md) | [`数组`](/tag/array.md) [`字符串`](/tag/string.md) | 🟢 | [🀄️](https://leetcode.cn/problems/maximum-number-of-words-found-in-sentences) [🔗](https://leetcode.com/problems/maximum-number-of-words-found-in-sentences) |
26672667
| 2115 | 从给定原材料中找到所有可以做出的菜 | | [`图`](/tag/graph.md) [`拓扑排序`](/tag/topological-sort.md) [`数组`](/tag/array.md) `2+` | 🟠 | [🀄️](https://leetcode.cn/problems/find-all-possible-recipes-from-given-supplies) [🔗](https://leetcode.com/problems/find-all-possible-recipes-from-given-supplies) |
2668-
| 2116 | 判断一个括号字符串是否有效 | | [`栈`](/tag/stack.md) [`贪心`](/tag/greedy.md) [`字符串`](/tag/string.md) | 🟠 | [🀄️](https://leetcode.cn/problems/check-if-a-parentheses-string-can-be-valid) [🔗](https://leetcode.com/problems/check-if-a-parentheses-string-can-be-valid) |
2668+
| 2116 | 判断一个括号字符串是否有效 | [[✓]](/problem/2116.md) | [`栈`](/tag/stack.md) [`贪心`](/tag/greedy.md) [`字符串`](/tag/string.md) | 🟠 | [🀄️](https://leetcode.cn/problems/check-if-a-parentheses-string-can-be-valid) [🔗](https://leetcode.com/problems/check-if-a-parentheses-string-can-be-valid) |
26692669
| 2117 | 一个区间内所有数乘积的缩写 | | [`数学`](/tag/math.md) | 🔴 | [🀄️](https://leetcode.cn/problems/abbreviating-the-product-of-a-range) [🔗](https://leetcode.com/problems/abbreviating-the-product-of-a-range) |
26702670

26712671

@@ -4284,7 +4284,7 @@ headerDepth: 0
42844284
| 题号 | 标题 | 题解 | 标签 | 难度 | 力扣 |
42854285
| :------: | :------ | :------: | :------ | :------: | :------: |
42864286
| 1399 | 统计最大组的数目 | [[✓]](/problem/1399.md) | [`哈希表`](/tag/hash-table.md) [`数学`](/tag/math.md) | 🟢 | [🀄️](https://leetcode.cn/problems/count-largest-group) [🔗](https://leetcode.com/problems/count-largest-group) |
4287-
| 1400 | 构造 K 个回文字符串 | | [`贪心`](/tag/greedy.md) [`哈希表`](/tag/hash-table.md) [`字符串`](/tag/string.md) `1+` | 🟠 | [🀄️](https://leetcode.cn/problems/construct-k-palindrome-strings) [🔗](https://leetcode.com/problems/construct-k-palindrome-strings) |
4287+
| 1400 | 构造 K 个回文字符串 | [[✓]](/problem/1400.md) | [`贪心`](/tag/greedy.md) [`哈希表`](/tag/hash-table.md) [`字符串`](/tag/string.md) `1+` | 🟠 | [🀄️](https://leetcode.cn/problems/construct-k-palindrome-strings) [🔗](https://leetcode.com/problems/construct-k-palindrome-strings) |
42884288
| 1401 | 圆和矩形是否有重叠 | | [`几何`](/tag/geometry.md) [`数学`](/tag/math.md) | 🟠 | [🀄️](https://leetcode.cn/problems/circle-and-rectangle-overlapping) [🔗](https://leetcode.com/problems/circle-and-rectangle-overlapping) |
42894289
| 1402 | 做菜顺序 | | [`贪心`](/tag/greedy.md) [`数组`](/tag/array.md) [`动态规划`](/tag/dynamic-programming.md) `1+` | 🔴 | [🀄️](https://leetcode.cn/problems/reducing-dishes) [🔗](https://leetcode.com/problems/reducing-dishes) |
42904290

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.