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
@@ -78,7 +78,7 @@ LeetCode Problems' Solutions
78
78
| <spanid="22">22</span> |[Generate Parentheses](https://leetcode.com/problems/generate-parentheses"括号生成")|[Go](https://github.com/openset/leetcode/tree/master/problems/generate-parentheses)| Medium |
79
79
| <spanid="23">23</span> |[Merge k Sorted Lists](https://leetcode.com/problems/merge-k-sorted-lists"合并K个排序链表")|[Go](https://github.com/openset/leetcode/tree/master/problems/merge-k-sorted-lists)| Hard |
80
80
| <spanid="24">24</span> |[Swap Nodes in Pairs](https://leetcode.com/problems/swap-nodes-in-pairs"两两交换链表中的节点")|[Go](https://github.com/openset/leetcode/tree/master/problems/swap-nodes-in-pairs)| Medium |
81
-
| <spanid="25">25</span> |[Reverse Nodes in k-Group](https://leetcode.com/problems/reverse-nodes-in-k-group"k个一组翻转链表")|[Go](https://github.com/openset/leetcode/tree/master/problems/reverse-nodes-in-k-group)| Hard |
81
+
| <spanid="25">25</span> |[Reverse Nodes in k-Group](https://leetcode.com/problems/reverse-nodes-in-k-group"K 个一组翻转链表")|[Go](https://github.com/openset/leetcode/tree/master/problems/reverse-nodes-in-k-group)| Hard |
82
82
| <spanid="26">26</span> |[Remove Duplicates from Sorted Array](https://leetcode.com/problems/remove-duplicates-from-sorted-array"删除排序数组中的重复项")|[Go](https://github.com/openset/leetcode/tree/master/problems/remove-duplicates-from-sorted-array)| Easy |
Copy file name to clipboardExpand all lines: tag/array/README.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,9 @@
9
9
10
10
| # | 题名 | 标签 | 难度 |
11
11
| :-: | - | - | :-: |
12
+
| 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
+
| 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 |
| 1040 |[移动石子直到连续 II](https://github.com/openset/leetcode/tree/master/problems/moving-stones-until-consecutive-ii)|[[数组](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 |
13
16
| 1035 |[不相交的线](https://github.com/openset/leetcode/tree/master/problems/uncrossed-lines)|[[数组](https://github.com/openset/leetcode/tree/master/tag/array/README.md)]| Medium |
14
17
| 1031 |[两个非重叠子数组的最大和](https://github.com/openset/leetcode/tree/master/problems/maximum-sum-of-two-non-overlapping-subarrays)|[[数组](https://github.com/openset/leetcode/tree/master/tag/array/README.md)]| Medium |
Copy file name to clipboardExpand all lines: tag/greedy/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
+
| 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 |
| 1007 |[行相等的最少多米诺旋转](https://github.com/openset/leetcode/tree/master/problems/minimum-domino-rotations-for-equal-row)|[[贪心算法](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/heap/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
+
| 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 |
| 973 |[最接近原点的 K 个点](https://github.com/openset/leetcode/tree/master/problems/k-closest-points-to-origin)|[[堆](https://github.com/openset/leetcode/tree/master/tag/heap/README.md)][[排序](https://github.com/openset/leetcode/tree/master/tag/sort/README.md)][[分治算法](https://github.com/openset/leetcode/tree/master/tag/divide-and-conquer/README.md)]| Medium |
14
15
| 882 |[细分图中的可到达结点](https://github.com/openset/leetcode/tree/master/problems/reachable-nodes-in-subdivided-graph)|[[堆](https://github.com/openset/leetcode/tree/master/tag/heap/README.md)]| Hard |
| 82 |[删除排序链表中的重复元素 II](https://github.com/openset/leetcode/tree/master/problems/remove-duplicates-from-sorted-list-ii)|[[链表](https://github.com/openset/leetcode/tree/master/tag/linked-list/README.md)]| Medium |
40
40
| 61 |[旋转链表](https://github.com/openset/leetcode/tree/master/problems/rotate-list)|[[链表](https://github.com/openset/leetcode/tree/master/tag/linked-list/README.md)][[双指针](https://github.com/openset/leetcode/tree/master/tag/two-pointers/README.md)]| Medium |
41
-
| 25 |[k个一组翻转链表](https://github.com/openset/leetcode/tree/master/problems/reverse-nodes-in-k-group)|[[链表](https://github.com/openset/leetcode/tree/master/tag/linked-list/README.md)]| Hard |
41
+
| 25 |[K 个一组翻转链表](https://github.com/openset/leetcode/tree/master/problems/reverse-nodes-in-k-group)|[[链表](https://github.com/openset/leetcode/tree/master/tag/linked-list/README.md)]| Hard |
42
42
| 24 |[两两交换链表中的节点](https://github.com/openset/leetcode/tree/master/problems/swap-nodes-in-pairs)|[[链表](https://github.com/openset/leetcode/tree/master/tag/linked-list/README.md)]| Medium |
43
43
| 23 |[合并K个排序链表](https://github.com/openset/leetcode/tree/master/problems/merge-k-sorted-lists)|[[堆](https://github.com/openset/leetcode/tree/master/tag/heap/README.md)][[链表](https://github.com/openset/leetcode/tree/master/tag/linked-list/README.md)][[分治算法](https://github.com/openset/leetcode/tree/master/tag/divide-and-conquer/README.md)]| Hard |
Copy file name to clipboardExpand all lines: tag/sort/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
+
| 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 |
| 973 |[最接近原点的 K 个点](https://github.com/openset/leetcode/tree/master/problems/k-closest-points-to-origin)|[[堆](https://github.com/openset/leetcode/tree/master/tag/heap/README.md)][[排序](https://github.com/openset/leetcode/tree/master/tag/sort/README.md)][[分治算法](https://github.com/openset/leetcode/tree/master/tag/divide-and-conquer/README.md)]| Medium |
0 commit comments