README.md 1.7 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

A
arida 已提交
12
### 中等难度
L
luzhipeng 已提交
13 14 15
- [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 已提交
16
- [19. Remove Nth Node From End of List](https://github.com/azl397985856/leetcode/blob/master/removeNthNodeFromEndofList.md)
L
luzhipeng 已提交
17
- [24. Swap Nodes In Pairs](https://github.com/azl397985856/leetcode/blob/master/swapNodesInPairs.md)
L
luzhipeng 已提交
18
- [75.sort-colors.md](https://github.com/azl397985856/leetcode/blob/master/75.sort-colors.md)
L
luzhipeng 已提交
19
- [86.partition-list](./86.partition-list.md)
L
luzhipeng 已提交
20
- [92.reverse-linked-list-ii](./92.reverse-linked-list-ii.md)
L
bfs  
luzhipeng 已提交
21 22 23
- [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 已提交
24 25 26 27
- [144.binary-tree-preorder-traversal](./144.binary-tree-preorder-traversal.md)
### 高级难度

- [145.binary-tree-postorder-traversal](./145.binary-tree-postorder-traversal.md)