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
| 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 |
13
15
| 1052 |[爱生气的书店老板](https://github.com/openset/leetcode/tree/master/problems/grumpy-bookstore-owner)|[[数组](https://github.com/openset/leetcode/tree/master/tag/array/README.md)][[Sliding Window](https://github.com/openset/leetcode/tree/master/tag/sliding-window/README.md)]| Medium |
Copy file name to clipboardExpand all lines: tag/backtracking/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
+
| 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 |
12
13
| 996 |[正方形数组的数目](https://github.com/openset/leetcode/tree/master/problems/number-of-squareful-arrays)|[[图](https://github.com/openset/leetcode/tree/master/tag/graph/README.md)][[数学](https://github.com/openset/leetcode/tree/master/tag/math/README.md)][[回溯算法](https://github.com/openset/leetcode/tree/master/tag/backtracking/README.md)]| Hard |
13
14
| 980 |[不同路径 III](https://github.com/openset/leetcode/tree/master/problems/unique-paths-iii)|[[深度优先搜索](https://github.com/openset/leetcode/tree/master/tag/depth-first-search/README.md)][[回溯算法](https://github.com/openset/leetcode/tree/master/tag/backtracking/README.md)]| Hard |
14
15
| 842 |[将数组拆分成斐波那契序列](https://github.com/openset/leetcode/tree/master/problems/split-array-into-fibonacci-sequence)|[[贪心算法](https://github.com/openset/leetcode/tree/master/tag/greedy/README.md)][[字符串](https://github.com/openset/leetcode/tree/master/tag/string/README.md)][[回溯算法](https://github.com/openset/leetcode/tree/master/tag/backtracking/README.md)]| Medium |
| 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 |
13
14
| 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 |
14
15
| 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/dynamic-programming/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
+
| 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
+
| 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
+
| 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 |
12
15
| 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 |
13
16
| 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 |
14
17
| 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/hash-table/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
+
| 1072 |[按列翻转得到最大值等行数](https://github.com/openset/leetcode/tree/master/problems/flip-columns-for-maximum-number-of-equal-rows)|[[哈希表](https://github.com/openset/leetcode/tree/master/tag/hash-table/README.md)]| Medium |
12
13
| 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 |
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 |
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
@@ -9,6 +9,8 @@
9
9
10
10
| # | 题名 | 标签 | 难度 |
11
11
| :-: | - | - | :-: |
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
+
| 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 |
| 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 |
13
15
| 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 |
14
16
| 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