README.md 2.5 KB
Newer Older
A
arida 已提交
1
# 介绍
L
luzhipeng 已提交
2 3

leetcode 题解,记录自己的 leecode 解题之路。
A
arida 已提交
4 5

## 传送门
L
luzhipeng 已提交
6

L
luzhipeng 已提交
7
### 简单难度
L
luzhipeng 已提交
8

L
luzhipeng 已提交
9
- [20. Valid Parentheses](https://github.com/azl397985856/leetcode/blob/master/validParentheses.md)
L
luzhipeng 已提交
10
- [26.remove-duplicates-from-sorted-array](https://github.com/azl397985856/leetcode/blob/master/26.remove-duplicates-from-sorted-array.md)
L
luzhipeng 已提交
11
- [206.reverse-linked-list](./206.reverse-linked-list.md)
L
luzhipeng 已提交
12
- [136.single-number](./136.single-number.md)
L
luzhipeng 已提交
13
- [167.two-sum-ii-input-array-is-sorted](./167.two-sum-ii-input-array-is-sorted.md)
L
luzhipeng 已提交
14 15 16
- [203.remove-linked-list-elements](./203.remove-linked-list-elements.md)
- [219.contains-duplicate-ii](./219.contains-duplicate-ii.md)
- [283.move-zeroes](./283.move-zeroes.md)
L
luzhipeng 已提交
17
- [349.intersection-of-two-arrays](./349.intersection-of-two-arrays.md)
L
luzhipeng 已提交
18

A
arida 已提交
19
### 中等难度
L
luzhipeng 已提交
20

L
luzhipeng 已提交
21 22 23
- [2. Add Two Numbers](https://github.com/azl397985856/leetcode/blob/master/addTwoNumbers.md)
- [3. Longest Substring Without Repeating Characters](https://github.com/azl397985856/leetcode/blob/master/longestSubstringWithoutRepeatingCharacters.md)
- [5. Longest Palindromic Substring](https://github.com/azl397985856/leetcode/blob/master/longestPalindromicSubstring.md)
L
luzhipeng 已提交
24
- [19. Remove Nth Node From End of List](https://github.com/azl397985856/leetcode/blob/master/removeNthNodeFromEndofList.md)
L
luzhipeng 已提交
25
- [24. Swap Nodes In Pairs](https://github.com/azl397985856/leetcode/blob/master/swapNodesInPairs.md)
L
luzhipeng 已提交
26
- [75.sort-colors.md](https://github.com/azl397985856/leetcode/blob/master/75.sort-colors.md)
L
luzhipeng 已提交
27
- [86.partition-list](./86.partition-list.md)
L
luzhipeng 已提交
28
- [92.reverse-linked-list-ii](./92.reverse-linked-list-ii.md)
L
bfs  
luzhipeng 已提交
29 30 31
- [94.binary-tree-inorder-traversal](./94.binary-tree-inorder-traversal.md)
- [102.binary-tree-level-order-traversal](./102.binary-tree-level-order-traversal.md)
- [103.binary-tree-zigzag-level-order-traversal](./103.binary-tree-zigzag-level-order-traversal.md)
L
luzhipeng 已提交
32
- [144.binary-tree-preorder-traversal](./144.binary-tree-preorder-traversal.md)
L
luzhipeng 已提交
33
- [150.evaluate-reverse-polish-notation](./150.evaluate-reverse-polish-notation.md)
L
luzhipeng 已提交
34 35 36
- [328.odd-even-linked-list](./328.odd-even-linked-list.md)
- [445.add-two-numbers-ii](./445.add-two-numbers-ii.md)
- [877.stone-game](./877.stone-game.md)
L
luzhipeng 已提交
37
- [279.perfect-squares](./279.perfect-squares.md)
L
luzhipeng 已提交
38 39
- [199.binary-tree-right-side-view](./199.binary-tree-right-side-view.md)
- [209.minimum-size-subarray-sum](./209.minimum-size-subarray-sum.md)
L
luzhipeng 已提交
40

L
luzhipeng 已提交
41
### 困难难度
L
luzhipeng 已提交
42

L
luzhipeng 已提交
43
- [145.binary-tree-postorder-traversal](./145.binary-tree-postorder-traversal.md)
L
luzhipeng 已提交
44
- [146.lru-cache](./146.lru-cache.md)