Movatterモバイル変換


[0]ホーム

URL:


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

Commit2d1371c

Browse files
author
luzhipeng
committed
feat: 首页排版修改
1 parenta951ec6 commit2d1371c

File tree

1 file changed

+78
-71
lines changed

1 file changed

+78
-71
lines changed

‎README.md

Lines changed: 78 additions & 71 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ leetcode 题解,记录自己的 leetcode 解题之路。
1818
1919
##食用指南
2020

21-
- 对于最近添加的部分,前面会有 🆕 标注
22-
- 对于最近更新的部分,前面会有 🖊 标注
21+
- 对于最近添加的部分,后面会有 🆕 标注
22+
- 对于最近更新的部分,后面会有 🖊 标注
2323
- 将来会在这里更新anki卡片
2424
- 这里有一份leetcode官方账号在知乎上给出的一个《互联网公司最常见的面试算法题有哪些?》的答案,我这里尽量去覆盖回答中的题目和知识点
2525
原文地址:https://www.zhihu.com/question/24964987/answer/586425979
@@ -53,9 +53,9 @@ leetcode 题解,记录自己的 leetcode 解题之路。
5353
##精彩预告
5454

5555

56-
42.trapping-rain-water-1(雨水收集问题):
56+
0042.trapping-rain-water-1(雨水收集问题):
5757

58-
![42.trapping-rain-water](./assets/problems/42.trapping-rain-water-1.png)
58+
![0042.trapping-rain-water](./assets/problems/42.trapping-rain-water-1.png)
5959

6060
浏览器中的栈:
6161

@@ -69,81 +69,86 @@ leetcode 题解,记录自己的 leetcode 解题之路。
6969

7070
![koko-eating-bananas](./assets/problems/koko-eating-bananas.png)
7171

72+
##进度
73+
74+
-[Top 100 Linked Questions](https://leetcode.com/problemset/top-100-liked-questions/)(44/100)
75+
76+
-[Top Interview Questions](https://leetcode.com/problemset/top-interview-questions/)(59/145)
7277
##传送门
7378

7479
###leetcode 经典题目的解析
7580

7681
####简单难度
7782

78-
-🖊[20.Valid Parentheses](./problems/20.validParentheses.md)
79-
-[26.remove-duplicates-from-sorted-array](./problems/26.remove-duplicates-from-sorted-array.md)
80-
-🆕[88.merge-sorted-array](./problems/88.merge-sorted-array.md)
81-
-[136.single-number](./problems/136.single-number.md)
82-
-[167.two-sum-ii-input-array-is-sorted](./problems/167.two-sum-ii-input-array-is-sorted.md)
83-
-🆕[169.majority-element](./problems/169.majority-element.md)
84-
-[190.reverse-bits](./problems/190.reverse-bits.md)
85-
-[191.number-of-1-bits](./problems/191.number-of-1-bits.md)
86-
-[203.remove-linked-list-elements](./problems/203.remove-linked-list-elements.md)
87-
-[206.reverse-linked-list](./problems/206.reverse-linked-list.md)
88-
-[219.contains-duplicate-ii](./problems/219.contains-duplicate-ii.md)
89-
-[226.invert-binary-tree](./problems/226.invert-binary-tree.md)
90-
-[283.move-zeroes](./problems/283.move-zeroes.md)
91-
-[349.intersection-of-two-arrays](./problems/349.intersection-of-two-arrays.md)
83+
-[0020.Valid Parentheses](./problems/20.validParentheses.md) 🖊
84+
-[0026.remove-duplicates-from-sorted-array](./problems/26.remove-duplicates-from-sorted-array.md)
85+
-[0088.merge-sorted-array](./problems/88.merge-sorted-array.md) 🆕
86+
-[0136.single-number](./problems/136.single-number.md)
87+
-[0167.two-sum-ii-input-array-is-sorted](./problems/167.two-sum-ii-input-array-is-sorted.md)
88+
-[0169.majority-element](./problems/169.majority-element.md) 🆕
89+
-[0190.reverse-bits](./problems/190.reverse-bits.md)
90+
-[0191.number-of-1-bits](./problems/191.number-of-1-bits.md)
91+
-[0203.remove-linked-list-elements](./problems/203.remove-linked-list-elements.md)
92+
-[0206.reverse-linked-list](./problems/206.reverse-linked-list.md)
93+
-[0219.contains-duplicate-ii](./problems/219.contains-duplicate-ii.md)
94+
-[0226.invert-binary-tree](./problems/226.invert-binary-tree.md)
95+
-[0283.move-zeroes](./problems/283.move-zeroes.md)
96+
-[0349.intersection-of-two-arrays](./problems/349.intersection-of-two-arrays.md)
9297

9398

9499
####中等难度
95100

96-
-[2. Add Two Numbers](./problems/2.addTwoNumbers.md)
97-
-[3. Longest Substring Without Repeating Characters](./problems/3.longestSubstringWithoutRepeatingCharacters.md)
98-
-[11.container-with-most-water](./problems/11.container-with-most-water.md)
99-
-[19. Remove Nth Node From End of List](./problems/19.removeNthNodeFromEndofList.md)
100-
-[24. Swap Nodes In Pairs](./problems/24.swapNodesInPairs.md)
101-
-🆕[39.combination-sum](./problems/39.combination-sum.md)
102-
-🆕[40.combination-sum-ii](./problems/40.combination-sum-ii.md)
103-
-🆕[46.permutations](./problems/46.permutations.md)
104-
-🆕[47.permutations-ii](./problems/47.permutations-ii.md)
105-
-🆕[55.jump-game](./problems/55.jump-game.md)
106-
-🆕[62.unique-paths](./problems/62.unique-paths.md)
107-
-[75.sort-colors](./problems/75.sort-colors.md)
108-
-🆕[78.subsets](./problems/78.subsets.md)
109-
-[86.partition-list](./problems/86.partition-list.md)
110-
-🆕[90.subsets-ii](./problems/90.subsets-ii.md)
111-
-[92.reverse-linked-list-ii](./problems/92.reverse-linked-list-ii.md)
112-
-[94.binary-tree-inorder-traversal](./problems/94.binary-tree-inorder-traversal.md)
113-
-[102.binary-tree-level-order-traversal](./problems/102.binary-tree-level-order-traversal.md)
114-
-[103.binary-tree-zigzag-level-order-traversal](./problems/103.binary-tree-zigzag-level-order-traversal.md)
115-
-[139.word-break](./problems/139.word-breakmd)
116-
-[144.binary-tree-preorder-traversal](./problems/144.binary-tree-preorder-traversal.md)
117-
-🖊[150.evaluate-reverse-polish-notation](./problems/150.evaluate-reverse-polish-notation.md)
118-
- 🆕[152.maximum-product-subarray](./problems/152.maximum-product-subarray.md)
119-
-[199.binary-tree-right-side-view](./problems/199.binary-tree-right-side-view.md)
120-
-[201.bitwise-and-of-numbers-range](./problems/201.bitwise-and-of-numbers-range.md)
121-
-🆕[208.implement-trie-prefix-tree](./problems/208.implement-trie-prefix-tree.md)
122-
-🖊[209.minimum-size-subarray-sum](./problems/209.minimum-size-subarray-sum.md)
123-
-🆕[236.lowest-common-ancestor-of-a-binary-tree](./problems/236.lowest-common-ancestor-of-a-binary-tree.md)
124-
-🆕[238.product-of-array-except-self](./problems/238.product-of-array-except-self.md)
125-
-[240.search-a-2-d-matrix-ii](./problems/240.search-a-2-d-matrix-ii.md)
126-
-🖊[279.perfect-squares](./problems/279.perfect-squares.md)
127-
-[322.coin-change](./problems/322.coin-change.md)
128-
-🆕[334.increasing-triplet-subsequence](./problems/334.increasing-triplet-subsequence.md)
129-
-[328.odd-even-linked-list](./problems/328.odd-even-linked-list.md)
130-
-[416.partition-equal-subset-sum](./problems/416.partition-equal-subset-sum.md)
131-
-[445.add-two-numbers-ii](./problems/445.add-two-numbers-ii.md)
132-
-[518.coin-change-2](./problems/518.coin-change-2.md)
133-
-[875.koko-eating-bananas](./problems/875.koko-eating-bananas.md)
134-
-[877.stone-game](./problems/877.stone-game.md)
135-
-[887.super-egg-drop](./problems/887.super-egg-drop.md)
136-
-[900.rle-iterator](./problems/900.rle-iterator.md)
101+
-[0002. Add Two Numbers](./problems/2.addTwoNumbers.md)
102+
-[0003. Longest Substring Without Repeating Characters](./problems/3.longestSubstringWithoutRepeatingCharacters.md)
103+
-[0011.container-with-most-water](./problems/11.container-with-most-water.md)
104+
-[0019. Remove Nth Node From End of List](./problems/19.removeNthNodeFromEndofList.md)
105+
-[0024. Swap Nodes In Pairs](./problems/24.swapNodesInPairs.md)
106+
-[0039.combination-sum](./problems/39.combination-sum.md) 🆕
107+
-[0040.combination-sum-ii](./problems/40.combination-sum-ii.md) 🆕
108+
-[0046.permutations](./problems/46.permutations.md) 🆕
109+
-[0047.permutations-ii](./problems/47.permutations-ii.md) 🆕
110+
-[0055.jump-game](./problems/55.jump-game.md) 🆕
111+
-[0062.unique-paths](./problems/62.unique-paths.md)🆕
112+
-[0075.sort-colors](./problems/75.sort-colors.md)
113+
-[0078.subsets](./problems/78.subsets.md) 🆕
114+
-[0086.partition-list](./problems/86.partition-list.md)
115+
-[0090.subsets-ii](./problems/90.subsets-ii.md) 🆕
116+
-[0092.reverse-linked-list-ii](./problems/92.reverse-linked-list-ii.md)
117+
-[0094.binary-tree-inorder-traversal](./problems/94.binary-tree-inorder-traversal.md)
118+
-[0102.binary-tree-level-order-traversal](./problems/102.binary-tree-level-order-traversal.md)
119+
-[0103.binary-tree-zigzag-level-order-traversal](./problems/103.binary-tree-zigzag-level-order-traversal.md)
120+
-[0139.word-break](./problems/139.word-breakmd)
121+
-[0144.binary-tree-preorder-traversal](./problems/144.binary-tree-preorder-traversal.md)
122+
-[0150.evaluate-reverse-polish-notation](./problems/150.evaluate-reverse-polish-notation.md) 🖊
123+
-[0152.maximum-product-subarray](./problems/152.maximum-product-subarray.md) 🆕
124+
-[0199.binary-tree-right-side-view](./problems/199.binary-tree-right-side-view.md)
125+
-[0201.bitwise-and-of-numbers-range](./problems/201.bitwise-and-of-numbers-range.md)
126+
-[0208.implement-trie-prefix-tree](./problems/208.implement-trie-prefix-tree.md) 🆕
127+
-[0209.minimum-size-subarray-sum](./problems/209.minimum-size-subarray-sum.md) 🖊
128+
-[0236.lowest-common-ancestor-of-a-binary-tree](./problems/236.lowest-common-ancestor-of-a-binary-tree.md)🆕
129+
-[0238.product-of-array-except-self](./problems/238.product-of-array-except-self.md) 🆕
130+
-[0240.search-a-2-d-matrix-ii](./problems/240.search-a-2-d-matrix-ii.md)
131+
-[0279.perfect-squares](./problems/279.perfect-squares.md)🖊
132+
-[0322.coin-change](./problems/322.coin-change.md)
133+
-[0334.increasing-triplet-subsequence](./problems/334.increasing-triplet-subsequence.md)
134+
-[0328.odd-even-linked-list](./problems/328.odd-even-linked-list.md)
135+
-[0416.partition-equal-subset-sum](./problems/416.partition-equal-subset-sum.md)
136+
-[0445.add-two-numbers-ii](./problems/445.add-two-numbers-ii.md)
137+
-[0518.coin-change-2](./problems/518.coin-change-2.md)
138+
-[0875.koko-eating-bananas](./problems/875.koko-eating-bananas.md)
139+
-[0877.stone-game](./problems/877.stone-game.md)
140+
-[0887.super-egg-drop](./problems/887.super-egg-drop.md)
141+
-[0900.rle-iterator](./problems/900.rle-iterator.md)
137142

138143
####困难难度
139-
-🆕[23.merge-k-sorted-lists](./problems/23.merge-k-sorted-lists.md)
140-
-🆕[42.trapping-rain-water](./problems/42.trapping-rain-water.md)
141-
-🆕[128.longest-consecutive-sequence](./problems/128.longest-consecutive-sequence.md)
142-
-[145.binary-tree-postorder-traversal](./problems/145.binary-tree-postorder-traversal.md)
143-
-[146.lru-cache](./problems/146.lru-cache.md)
144-
-🆕[239.sliding-window-maximum](./problems/239.sliding-window-maximum.md)
145-
-🆕[295.find-median-from-data-stream.md](./problems/295.find-median-from-data-stream.md)
146-
-[301.remove-invalid-parentheses](./problems/301.remove-invalid-parentheses.md)
144+
-[0023.merge-k-sorted-lists](./problems/23.merge-k-sorted-lists.md)
145+
-[0042.trapping-rain-water](./problems/42.trapping-rain-water.md)
146+
-[0128.longest-consecutive-sequence](./problems/128.longest-consecutive-sequence.md) 🆕
147+
-[0145.binary-tree-postorder-traversal](./problems/145.binary-tree-postorder-traversal.md)
148+
-[0146.lru-cache](./problems/146.lru-cache.md)
149+
-[0239.sliding-window-maximum](./problems/239.sliding-window-maximum.md)
150+
-[0295.find-median-from-data-stream.md](./problems/295.find-median-from-data-stream.md) 🆕
151+
-[0301.remove-invalid-parentheses](./problems/301.remove-invalid-parentheses.md)
147152

148153
###数据结构与算法的总结
149154

@@ -175,13 +180,15 @@ anki - 文件 - 导入 - 下拉格式选择“打包的 anki集合”,然后
175180

176181
###计划
177182

178-
-[494.target-sum](./todo/494.target-sum.js)
183+
-[0494.target-sum](./todo/494.target-sum.js)
184+
185+
-[0609.find-duplicate-file-in-system](./todo/609.find-duplicate-file-in-system.js)
179186

180-
-[609.find-duplicate-file-in-system](./todo/609.find-duplicate-file-in-system.js)
187+
-[0010.regular-expression-matching](./todo/10.regular-expression-matching.js)
181188

182-
-[10.regular-expression-matching](./todo/10.regular-expression-matching.js)
189+
-[0309.best-time-to-buy-and-sell-stock-with-cooldown](./todo/309.best-time-to-buy-and-sell-stock-with-cooldown.js)
183190

184-
-[365.water-and-jug-problem](./todo/365.water-and-jug-problem.js)
191+
-[0365.water-and-jug-problem](./todo/365.water-and-jug-problem.js)
185192

186193
-[anki 卡片 完善](./assets/anki/)
187194

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp