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
Copy file name to clipboardExpand all lines: readme/1-300.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -341,7 +341,7 @@ LeetCode Problems' Solutions
341
341
| <spanid="285">285</span> |[Inorder Successor in BST](https://leetcode.com/problems/inorder-successor-in-bst"二叉搜索树中的顺序后继") 🔒 |[Go](https://github.com/openset/leetcode/tree/master/problems/inorder-successor-in-bst)| Medium |
342
342
| <spanid="286">286</span> |[Walls and Gates](https://leetcode.com/problems/walls-and-gates"墙与门") 🔒 |[Go](https://github.com/openset/leetcode/tree/master/problems/walls-and-gates)| Medium |
343
343
| <spanid="287">287</span> |[Find the Duplicate Number](https://leetcode.com/problems/find-the-duplicate-number"寻找重复数")|[Go](https://github.com/openset/leetcode/tree/master/problems/find-the-duplicate-number)| Medium |
344
-
| <spanid="288">288</span> |[Unique Word Abbreviation](https://leetcode.com/problems/unique-word-abbreviation"唯一的单词缩写") 🔒 |[Go](https://github.com/openset/leetcode/tree/master/problems/unique-word-abbreviation)| Medium |
344
+
| <spanid="288">288</span> |[Unique Word Abbreviation](https://leetcode.com/problems/unique-word-abbreviation"单词的唯一缩写") 🔒 |[Go](https://github.com/openset/leetcode/tree/master/problems/unique-word-abbreviation)| Medium |
345
345
| <spanid="289">289</span> |[Game of Life](https://leetcode.com/problems/game-of-life"生命游戏")|[Go](https://github.com/openset/leetcode/tree/master/problems/game-of-life)| Medium |
Copy file name to clipboardExpand all lines: tag/binary-search/README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,7 @@
9
9
10
10
| # | 题名 | 标签 | 难度 |
11
11
| :-: | - | - | :-: |
12
+
| 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 |
12
13
| 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 |
13
14
| 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 |
14
15
| 927 |[三等分](https://github.com/openset/leetcode/tree/master/problems/three-equal-parts)|[[贪心算法](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/binary-search/README.md)]| Hard |
Copy file name to clipboardExpand all lines: tag/design/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@
34
34
| 341 |[扁平化嵌套列表迭代器](https://github.com/openset/leetcode/tree/master/problems/flatten-nested-list-iterator)|[[栈](https://github.com/openset/leetcode/tree/master/tag/stack/README.md)][[设计](https://github.com/openset/leetcode/tree/master/tag/design/README.md)]| Medium |
35
35
| 297 |[二叉树的序列化与反序列化](https://github.com/openset/leetcode/tree/master/problems/serialize-and-deserialize-binary-tree)|[[树](https://github.com/openset/leetcode/tree/master/tag/tree/README.md)][[设计](https://github.com/openset/leetcode/tree/master/tag/design/README.md)]| Hard |
36
36
| 295 |[数据流的中位数](https://github.com/openset/leetcode/tree/master/problems/find-median-from-data-stream)|[[堆](https://github.com/openset/leetcode/tree/master/tag/heap/README.md)][[设计](https://github.com/openset/leetcode/tree/master/tag/design/README.md)]| Hard |
37
-
| 288 |[唯一的单词缩写](https://github.com/openset/leetcode/tree/master/problems/unique-word-abbreviation) 🔒 |[[设计](https://github.com/openset/leetcode/tree/master/tag/design/README.md)][[哈希表](https://github.com/openset/leetcode/tree/master/tag/hash-table/README.md)]| Medium |
37
+
| 288 |[单词的唯一缩写](https://github.com/openset/leetcode/tree/master/problems/unique-word-abbreviation) 🔒 |[[设计](https://github.com/openset/leetcode/tree/master/tag/design/README.md)][[哈希表](https://github.com/openset/leetcode/tree/master/tag/hash-table/README.md)]| Medium |
38
38
| 284 |[顶端迭代器](https://github.com/openset/leetcode/tree/master/problems/peeking-iterator)|[[设计](https://github.com/openset/leetcode/tree/master/tag/design/README.md)]| Medium |
39
39
| 281 |[锯齿迭代器](https://github.com/openset/leetcode/tree/master/problems/zigzag-iterator) 🔒 |[[设计](https://github.com/openset/leetcode/tree/master/tag/design/README.md)]| Medium |
40
40
| 251 |[展开二维向量](https://github.com/openset/leetcode/tree/master/problems/flatten-2d-vector) 🔒 |[[设计](https://github.com/openset/leetcode/tree/master/tag/design/README.md)]| Medium |
Copy file name to clipboardExpand all lines: tag/graph/README.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,8 @@
9
9
10
10
| # | 题名 | 标签 | 难度 |
11
11
| :-: | - | - | :-: |
12
+
| 1043 |[分隔数组以得到最大和](https://github.com/openset/leetcode/tree/master/problems/partition-array-for-maximum-sum)|[[图](https://github.com/openset/leetcode/tree/master/tag/graph/README.md)]| Medium |
| 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 |
14
16
| 990 |[等式方程的可满足性](https://github.com/openset/leetcode/tree/master/problems/satisfiability-of-equality-equations)|[[并查集](https://github.com/openset/leetcode/tree/master/tag/union-find/README.md)][[图](https://github.com/openset/leetcode/tree/master/tag/graph/README.md)]| Medium |
Copy file name to clipboardExpand all lines: tag/hash-table/README.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,7 @@
9
9
10
10
| # | 题名 | 标签 | 难度 |
11
11
| :-: | - | - | :-: |
12
+
| 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 |
| 1001 |[网格照明](https://github.com/openset/leetcode/tree/master/problems/grid-illumination)|[[哈希表](https://github.com/openset/leetcode/tree/master/tag/hash-table/README.md)]| Hard |
14
15
| 992 |[K 个不同整数的子数组](https://github.com/openset/leetcode/tree/master/problems/subarrays-with-k-different-integers)|[[哈希表](https://github.com/openset/leetcode/tree/master/tag/hash-table/README.md)][[双指针](https://github.com/openset/leetcode/tree/master/tag/two-pointers/README.md)][[Sliding Window](https://github.com/openset/leetcode/tree/master/tag/sliding-window/README.md)]| Hard |
@@ -82,7 +83,7 @@
82
83
| 311 |[稀疏矩阵的乘法](https://github.com/openset/leetcode/tree/master/problems/sparse-matrix-multiplication) 🔒 |[[哈希表](https://github.com/openset/leetcode/tree/master/tag/hash-table/README.md)]| Medium |
83
84
| 299 |[猜数字游戏](https://github.com/openset/leetcode/tree/master/problems/bulls-and-cows)|[[哈希表](https://github.com/openset/leetcode/tree/master/tag/hash-table/README.md)]| Medium |
| 288 |[唯一的单词缩写](https://github.com/openset/leetcode/tree/master/problems/unique-word-abbreviation) 🔒 |[[设计](https://github.com/openset/leetcode/tree/master/tag/design/README.md)][[哈希表](https://github.com/openset/leetcode/tree/master/tag/hash-table/README.md)]| Medium |
86
+
| 288 |[单词的唯一缩写](https://github.com/openset/leetcode/tree/master/problems/unique-word-abbreviation) 🔒 |[[设计](https://github.com/openset/leetcode/tree/master/tag/design/README.md)][[哈希表](https://github.com/openset/leetcode/tree/master/tag/hash-table/README.md)]| Medium |
86
87
| 274 |[H指数](https://github.com/openset/leetcode/tree/master/problems/h-index)|[[排序](https://github.com/openset/leetcode/tree/master/tag/sort/README.md)][[哈希表](https://github.com/openset/leetcode/tree/master/tag/hash-table/README.md)]| Medium |
| 1017 |[负二进制转换](https://github.com/openset/leetcode/tree/master/problems/convert-to-base-2)|[[数学](https://github.com/openset/leetcode/tree/master/tag/math/README.md)]| Medium |
0 commit comments