README.md 2.3 KB
Newer Older
A
arida 已提交
1 2 3 4
# 介绍
leetcode题解,记录自己的leecode解题之路。

## 传送门
L
luzhipeng 已提交
5 6
### 简单难度
- [20. Valid Parentheses](https://github.com/azl397985856/leetcode/blob/master/validParentheses.md)
L
luzhipeng 已提交
7
- [26.remove-duplicates-from-sorted-array](https://github.com/azl397985856/leetcode/blob/master/26.remove-duplicates-from-sorted-array.md)
L
luzhipeng 已提交
8
- [206.reverse-linked-list](./206.reverse-linked-list.md)
L
luzhipeng 已提交
9
- [136.single-number](./136.single-number.md)
L
luzhipeng 已提交
10
- [167.two-sum-ii-input-array-is-sorted](./167.two-sum-ii-input-array-is-sorted.md)
L
luzhipeng 已提交
11 12 13
- [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 已提交
14
- [349.intersection-of-two-arrays](./349.intersection-of-two-arrays.md)
L
luzhipeng 已提交
15

A
arida 已提交
16
### 中等难度
L
luzhipeng 已提交
17 18 19
- [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 已提交
20
- [19. Remove Nth Node From End of List](https://github.com/azl397985856/leetcode/blob/master/removeNthNodeFromEndofList.md)
L
luzhipeng 已提交
21
- [24. Swap Nodes In Pairs](https://github.com/azl397985856/leetcode/blob/master/swapNodesInPairs.md)
L
luzhipeng 已提交
22
- [75.sort-colors.md](https://github.com/azl397985856/leetcode/blob/master/75.sort-colors.md)
L
luzhipeng 已提交
23
- [86.partition-list](./86.partition-list.md)
L
luzhipeng 已提交
24
- [92.reverse-linked-list-ii](./92.reverse-linked-list-ii.md)
L
bfs  
luzhipeng 已提交
25 26 27
- [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 已提交
28
- [144.binary-tree-preorder-traversal](./144.binary-tree-preorder-traversal.md)
L
luzhipeng 已提交
29
- [150.evaluate-reverse-polish-notation](./150.evaluate-reverse-polish-notation.md)
L
luzhipeng 已提交
30 31 32
- [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 已提交
33
- [279.perfect-squares](./279.perfect-squares.md)
L
luzhipeng 已提交
34

L
luzhipeng 已提交
35 36 37
### 困难难度
- [145.binary-tree-postorder-traversal](./145.binary-tree-postorder-traversal.md)
- [146.lru-cache](./146.lru-cache.md)