You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| <spanid="1074">1074</span> |[Number of Submatrices That Sum to Target](https://leetcode.com/problems/number-of-submatrices-that-sum-to-target"元素和为目标值的子矩阵数量")|[Go](https://github.com/openset/leetcode/tree/master/problems/number-of-submatrices-that-sum-to-target)| Hard |
58
61
| <spanid="1073">1073</span> |[Adding Two Negabinary Numbers](https://leetcode.com/problems/adding-two-negabinary-numbers"负二进制数相加")|[Go](https://github.com/openset/leetcode/tree/master/problems/adding-two-negabinary-numbers)| Medium |
59
62
| <spanid="1072">1072</span> |[Flip Columns For Maximum Number of Equal Rows](https://leetcode.com/problems/flip-columns-for-maximum-number-of-equal-rows"按列翻转得到最大值等行数")|[Go](https://github.com/openset/leetcode/tree/master/problems/flip-columns-for-maximum-number-of-equal-rows)| Medium |
| 1060 |[有序数组中的缺失元素](https://github.com/openset/leetcode/tree/master/problems/missing-element-in-sorted-array) 🔒 |[[二分查找](https://github.com/openset/leetcode/tree/master/tag/binary-search/README.md)]| Medium |
13
14
| 1044 |[最长重复子串](https://github.com/openset/leetcode/tree/master/problems/longest-duplicate-substring)|[[哈希表](https://github.com/openset/leetcode/tree/master/tag/hash-table/README.md)][[二分查找](https://github.com/openset/leetcode/tree/master/tag/binary-search/README.md)]| Hard |
14
15
| 1011 |[在 D 天内送达包裹的能力](https://github.com/openset/leetcode/tree/master/problems/capacity-to-ship-packages-within-d-days)|[[数组](https://github.com/openset/leetcode/tree/master/tag/array/README.md)][[二分查找](https://github.com/openset/leetcode/tree/master/tag/binary-search/README.md)]| Medium |
15
16
| 981 |[基于时间的键值存储](https://github.com/openset/leetcode/tree/master/problems/time-based-key-value-store)|[[哈希表](https://github.com/openset/leetcode/tree/master/tag/hash-table/README.md)][[二分查找](https://github.com/openset/leetcode/tree/master/tag/binary-search/README.md)]| Medium |
Copy file name to clipboardExpand all lines: tag/depth-first-search/README.md
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,7 @@
9
9
10
10
| # | 题名 | 标签 | 难度 |
11
11
| :-: | - | - | :-: |
12
+
| 1061 |[按字典序排列最小的等效字符串](https://github.com/openset/leetcode/tree/master/problems/lexicographically-smallest-equivalent-string) 🔒 |[[深度优先搜索](https://github.com/openset/leetcode/tree/master/tag/depth-first-search/README.md)][[并查集](https://github.com/openset/leetcode/tree/master/tag/union-find/README.md)]| Medium |
12
13
| 1034 |[边框着色](https://github.com/openset/leetcode/tree/master/problems/coloring-a-border)|[[深度优先搜索](https://github.com/openset/leetcode/tree/master/tag/depth-first-search/README.md)]| Medium |
13
14
| 1028 |[从先序遍历还原二叉树](https://github.com/openset/leetcode/tree/master/problems/recover-a-tree-from-preorder-traversal)|[[树](https://github.com/openset/leetcode/tree/master/tag/tree/README.md)][[深度优先搜索](https://github.com/openset/leetcode/tree/master/tag/depth-first-search/README.md)]| Hard |
14
15
| 1026 |[节点与其祖先之间的最大差值](https://github.com/openset/leetcode/tree/master/problems/maximum-difference-between-node-and-ancestor)|[[树](https://github.com/openset/leetcode/tree/master/tag/tree/README.md)][[深度优先搜索](https://github.com/openset/leetcode/tree/master/tag/depth-first-search/README.md)]| Medium |
Copy file name to clipboardExpand all lines: tag/dynamic-programming/README.md
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,8 @@
12
12
| 1074 |[元素和为目标值的子矩阵数量](https://github.com/openset/leetcode/tree/master/problems/number-of-submatrices-that-sum-to-target)|[[数组](https://github.com/openset/leetcode/tree/master/tag/array/README.md)][[动态规划](https://github.com/openset/leetcode/tree/master/tag/dynamic-programming/README.md)][[Sliding Window](https://github.com/openset/leetcode/tree/master/tag/sliding-window/README.md)]| Hard |
13
13
| 1067 |[范围内的数字计数](https://github.com/openset/leetcode/tree/master/problems/digit-count-in-range) 🔒 |[[数学](https://github.com/openset/leetcode/tree/master/tag/math/README.md)][[动态规划](https://github.com/openset/leetcode/tree/master/tag/dynamic-programming/README.md)]| Hard |
14
14
| 1066 |[校园自行车分配 II](https://github.com/openset/leetcode/tree/master/problems/campus-bikes-ii) 🔒 |[[动态规划](https://github.com/openset/leetcode/tree/master/tag/dynamic-programming/README.md)][[回溯算法](https://github.com/openset/leetcode/tree/master/tag/backtracking/README.md)]| Medium |
15
+
| 1058 |[最小化舍入误差以满足目标](https://github.com/openset/leetcode/tree/master/problems/minimize-rounding-error-to-meet-target) 🔒 |[[贪心算法](https://github.com/openset/leetcode/tree/master/tag/greedy/README.md)][[数学](https://github.com/openset/leetcode/tree/master/tag/math/README.md)][[动态规划](https://github.com/openset/leetcode/tree/master/tag/dynamic-programming/README.md)]| Medium |
16
+
| 1055 |[形成字符串的最短路径](https://github.com/openset/leetcode/tree/master/problems/shortest-way-to-form-string) 🔒 |[[贪心算法](https://github.com/openset/leetcode/tree/master/tag/greedy/README.md)][[动态规划](https://github.com/openset/leetcode/tree/master/tag/dynamic-programming/README.md)]| Medium |
15
17
| 1049 |[最后一块石头的重量 II](https://github.com/openset/leetcode/tree/master/problems/last-stone-weight-ii)|[[动态规划](https://github.com/openset/leetcode/tree/master/tag/dynamic-programming/README.md)]| Medium |
16
18
| 1048 |[最长字符串链](https://github.com/openset/leetcode/tree/master/problems/longest-string-chain)|[[哈希表](https://github.com/openset/leetcode/tree/master/tag/hash-table/README.md)][[动态规划](https://github.com/openset/leetcode/tree/master/tag/dynamic-programming/README.md)]| Medium |
17
19
| 1039 |[多边形三角剖分的最低得分](https://github.com/openset/leetcode/tree/master/problems/minimum-score-triangulation-of-polygon)|[[动态规划](https://github.com/openset/leetcode/tree/master/tag/dynamic-programming/README.md)]| Medium |
Copy file name to clipboardExpand all lines: tag/greedy/README.md
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,9 @@
9
9
10
10
| # | 题名 | 标签 | 难度 |
11
11
| :-: | - | - | :-: |
12
+
| 1058 |[最小化舍入误差以满足目标](https://github.com/openset/leetcode/tree/master/problems/minimize-rounding-error-to-meet-target) 🔒 |[[贪心算法](https://github.com/openset/leetcode/tree/master/tag/greedy/README.md)][[数学](https://github.com/openset/leetcode/tree/master/tag/math/README.md)][[动态规划](https://github.com/openset/leetcode/tree/master/tag/dynamic-programming/README.md)]| Medium |
13
+
| 1057 |[校园自行车分配](https://github.com/openset/leetcode/tree/master/problems/campus-bikes) 🔒 |[[贪心算法](https://github.com/openset/leetcode/tree/master/tag/greedy/README.md)][[排序](https://github.com/openset/leetcode/tree/master/tag/sort/README.md)]| Medium |
14
+
| 1055 |[形成字符串的最短路径](https://github.com/openset/leetcode/tree/master/problems/shortest-way-to-form-string) 🔒 |[[贪心算法](https://github.com/openset/leetcode/tree/master/tag/greedy/README.md)][[动态规划](https://github.com/openset/leetcode/tree/master/tag/dynamic-programming/README.md)]| Medium |
12
15
| 1053 |[交换一次的先前排列](https://github.com/openset/leetcode/tree/master/problems/previous-permutation-with-one-swap)|[[贪心算法](https://github.com/openset/leetcode/tree/master/tag/greedy/README.md)][[数组](https://github.com/openset/leetcode/tree/master/tag/array/README.md)]| Medium |
Copy file name to clipboardExpand all lines: tag/math/README.md
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,8 @@
11
11
| :-: | - | - | :-: |
12
12
| 1073 |[负二进制数相加](https://github.com/openset/leetcode/tree/master/problems/adding-two-negabinary-numbers)|[[数学](https://github.com/openset/leetcode/tree/master/tag/math/README.md)]| Medium |
13
13
| 1067 |[范围内的数字计数](https://github.com/openset/leetcode/tree/master/problems/digit-count-in-range) 🔒 |[[数学](https://github.com/openset/leetcode/tree/master/tag/math/README.md)][[动态规划](https://github.com/openset/leetcode/tree/master/tag/dynamic-programming/README.md)]| Hard |
14
+
| 1058 |[最小化舍入误差以满足目标](https://github.com/openset/leetcode/tree/master/problems/minimize-rounding-error-to-meet-target) 🔒 |[[贪心算法](https://github.com/openset/leetcode/tree/master/tag/greedy/README.md)][[数学](https://github.com/openset/leetcode/tree/master/tag/math/README.md)][[动态规划](https://github.com/openset/leetcode/tree/master/tag/dynamic-programming/README.md)]| Medium |
Copy file name to clipboardExpand all lines: tag/sort/README.md
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,7 @@
9
9
10
10
| # | 题名 | 标签 | 难度 |
11
11
| :-: | - | - | :-: |
12
+
| 1057 |[校园自行车分配](https://github.com/openset/leetcode/tree/master/problems/campus-bikes) 🔒 |[[贪心算法](https://github.com/openset/leetcode/tree/master/tag/greedy/README.md)][[排序](https://github.com/openset/leetcode/tree/master/tag/sort/README.md)]| Medium |
12
13
| 1054 |[距离相等的条形码](https://github.com/openset/leetcode/tree/master/problems/distant-barcodes)|[[堆](https://github.com/openset/leetcode/tree/master/tag/heap/README.md)][[排序](https://github.com/openset/leetcode/tree/master/tag/sort/README.md)]| Medium |
| 1019 |[链表中的下一个更大节点](https://github.com/openset/leetcode/tree/master/problems/next-greater-node-in-linked-list)|[[栈](https://github.com/openset/leetcode/tree/master/tag/stack/README.md)][[链表](https://github.com/openset/leetcode/tree/master/tag/linked-list/README.md)]| Medium |
| 1062 |[最长重复子串](https://github.com/openset/leetcode/tree/master/problems/longest-repeating-substring) 🔒 |[[字符串](https://github.com/openset/leetcode/tree/master/tag/string/README.md)]| Medium |
14
15
| 1023 |[驼峰式匹配](https://github.com/openset/leetcode/tree/master/problems/camelcase-matching)|[[字典树](https://github.com/openset/leetcode/tree/master/tag/trie/README.md)][[字符串](https://github.com/openset/leetcode/tree/master/tag/string/README.md)]| Medium |
15
16
| 1016 |[子串能表示从 1 到 N 数字的二进制串](https://github.com/openset/leetcode/tree/master/problems/binary-string-with-substrings-representing-1-to-n)|[[字符串](https://github.com/openset/leetcode/tree/master/tag/string/README.md)]| Medium |
16
17
| 1003 |[检查替换后的词是否有效](https://github.com/openset/leetcode/tree/master/problems/check-if-word-is-valid-after-substitutions)|[[栈](https://github.com/openset/leetcode/tree/master/tag/stack/README.md)][[字符串](https://github.com/openset/leetcode/tree/master/tag/string/README.md)]| Medium |
0 commit comments