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

Sign up
Appearance settings

Commit cc9c134

Browse files
committed
Update Course-Git-06.md
1 parent cc1ee21 commit cc9c134

File tree

1 file changed

+22
-15
lines changed

1 file changed

+22
-15
lines changed

‎Assets/Course/Course-Git-06.md‎

Lines changed: 22 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
- [0034. 在排序数组中查找元素的第一个和最后一个位置](https://leetcode.cn/problems/find-first-and-last-position-of-element-in-sorted-array/)
3737
- [0153. 寻找旋转排序数组中的最小值](https://leetcode.cn/problems/find-minimum-in-rotated-sorted-array/)
3838

39-
### Task 02: 第 013 ~ 024 题( 第 05 ~ 08 天)
39+
### Task 02: 第 013 ~ 025 题( 第 05 ~ 08 天)
4040

4141
- 第 05 天课程题目:
4242
- [0033. 搜索旋转排序数组](https://leetcode.cn/problems/search-in-rotated-sorted-array/)
@@ -45,53 +45,60 @@
4545
- 第 06 天课程题目:
4646
- [0240. 搜索二维矩阵 II](https://leetcode.cn/problems/search-a-2d-matrix-ii/)
4747
- [0069. x 的平方根](https://leetcode.cn/problems/sqrtx/)
48-
- [0015. 三数之和](https://leetcode.cn/problems/3sum/)
49-
- 第 07 天课程题目:
5048
- [0283. 移动零](https://leetcode.cn/problems/move-zeroes/)
49+
- 第 07 天课程题目:
5150
- [0415. 字符串相加](https://leetcode.cn/problems/add-strings/)
5251
- [0239. 滑动窗口最大值](https://leetcode.cn/problems/sliding-window-maximum/)
53-
- 第 08 天课程题目:
5452
- [0003. 无重复字符的最长子串](https://leetcode.cn/problems/longest-substring-without-repeating-characters/)
53+
- 第 08 天课程题目:
5554
- [0076. 最小覆盖子串](https://leetcode.cn/problems/minimum-window-substring/)
5655
- [0718. 最长重复子数组](https://leetcode.cn/problems/maximum-length-of-repeated-subarray/)
56+
- [0083. 删除排序链表中的重复元素](https://leetcode.cn/problems/remove-duplicates-from-sorted-list/)
57+
- [0082. 删除排序链表中的重复元素 II](https://leetcode.cn/problems/remove-duplicates-from-sorted-list-ii/)
5758

58-
### Task 03 第 025 ~ 037 题(第 09 ~ 12 天)
59+
### Task 03 第 026 ~ 037 题(第 09 ~ 12 天)
5960

6061
- 第 09 天课程题目:
61-
- [0083. 删除排序链表中的重复元素](https://leetcode.cn/problems/remove-duplicates-from-sorted-list/)
62-
- [0082. 删除排序链表中的重复元素 II](https://leetcode.cn/problems/remove-duplicates-from-sorted-list-ii/)
6362
- [0206. 反转链表](https://leetcode.cn/problems/reverse-linked-list/)
6463
- [0092. 反转链表 II](https://leetcode.cn/problems/reverse-linked-list-ii/)
65-
- 第 10 天课程题目:
6664
- [0025. K 个一组翻转链表](https://leetcode.cn/problems/reverse-nodes-in-k-group/)
65+
- 第 10 天课程题目:
6766
- [0234. 回文链表](https://leetcode.cn/problems/palindrome-linked-list/)
6867
- [0021. 合并两个有序链表](https://leetcode.cn/problems/merge-two-sorted-lists/)
69-
- 第 11 天课程题目:
7068
- [0148. 排序链表](https://leetcode.cn/problems/sort-list/)
69+
- 第 11 天课程题目:
7170
- [0023. 合并K个升序链表](https://leetcode.cn/problems/merge-k-sorted-lists/)
7271
- [0141. 环形链表](https://leetcode.cn/problems/linked-list-cycle/)
73-
- 第 12 天课程题目:
7472
- [0142. 环形链表 II](https://leetcode.cn/problems/linked-list-cycle-ii/)
73+
- 第 12 天课程题目:
7574
- [0160. 相交链表](https://leetcode.cn/problems/intersection-of-two-linked-lists/)
7675
- [0019. 删除链表的倒数第 N 个结点](https://leetcode.cn/problems/remove-nth-node-from-end-of-list/)
76+
- [0143. 重排链表](https://leetcode.cn/problems/reorder-list/)
7777

7878
### Task 04:第 038 ~ 050 题(第 13 ~ 16 天)
7979

8080
- 第 13 天课程题目:
81-
- [0143. 重排链表](https://leetcode.cn/problems/reorder-list/)
8281
- [0002. 两数相加](https://leetcode.cn/problems/add-two-numbers/)
8382
- [0155. 最小栈](https://leetcode.cn/problems/min-stack/)
84-
- 第 14 天课程题目:
8583
- [0020. 有效的括号](https://leetcode.cn/problems/valid-parentheses/)
84+
- 第 14 天课程题目:
8685
- [0227. 基本计算器 II](https://leetcode.cn/problems/basic-calculator-ii/)
8786
- [0232. 用栈实现队列](https://leetcode.cn/problems/implement-queue-using-stacks/)
88-
- 第 15 天课程题目:
8987
- [0394. 字符串解码](https://leetcode.cn/problems/decode-string/)
88+
- 第 15 天课程题目:
9089
- [0032. 最长有效括号](https://leetcode.cn/problems/longest-valid-parentheses/)
9190
- [0042. 接雨水](https://leetcode.cn/problems/trapping-rain-water/)
92-
- 第 16 天课程题目:
9391
- [0225. 用队列实现栈](https://leetcode.cn/problems/implement-stack-using-queues/)
92+
- 第 16 天课程题目:
9493
- [0001. 两数之和](https://leetcode.cn/problems/two-sum/)
94+
- [0015. 三数之和](https://leetcode.cn/problems/3sum/)
95+
- [0041. 缺失的第一个正数](https://leetcode.cn/problems/first-missing-positive/)
9596
- [0128. 最长连续序列](https://leetcode.cn/problems/longest-consecutive-sequence/)
97+
- [更多面试题目](https://github.com/itcharge/LeetCode-Py/blob/main/Contents/00.Introduction/07.Interview-200-List.md)
98+
99+
### 附加题目
100+
101+
- 附加题目:
96102
- [0146. LRU 缓存](https://leetcode.cn/problems/lru-cache/)
97-
- [更多面试题目](https://github.com/itcharge/LeetCode-Py/blob/main/Contents/00.Introduction/07.Interview-200-List.md)
103+
- [0460. LFU 缓存](https://leetcode.cn/problems/lfu-cache/)
104+
- [0031. 下一个排列](https://leetcode.cn/problems/next-permutation/)

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /