|
8 | 8 |
|
9 | 9 | ## 数组
|
10 | 10 |
|
11 |
| -- [1. 两数之和](https://github.com/Geekhyt/javascript-leetcode/issues/1) |
12 |
| -- [11. 盛水最多的容器](https://github.com/Geekhyt/javascript-leetcode/issues/2) |
13 |
| -- [15. 三数之和](https://github.com/Geekhyt/javascript-leetcode/issues/3) |
14 |
| -- [26. 删除排序数组中的重复项](https://github.com/Geekhyt/javascript-leetcode/issues/4) |
15 |
| -- [66. 加一 ](https://github.com/Geekhyt/javascript-leetcode/issues/5) |
16 |
| -- [283. 移动零 ](https://github.com/Geekhyt/javascript-leetcode/issues/6) |
| 11 | +- [1. 两数之和](https://github.com/Geekhyt/javascript-leetcode/issues/1)✅ |
| 12 | +- [11. 盛水最多的容器](https://github.com/Geekhyt/javascript-leetcode/issues/2)✅ |
| 13 | +- [15. 三数之和](https://github.com/Geekhyt/javascript-leetcode/issues/3)✅ |
| 14 | +- [26. 删除排序数组中的重复项](https://github.com/Geekhyt/javascript-leetcode/issues/4)✅ |
| 15 | +- [66. 加一 ](https://github.com/Geekhyt/javascript-leetcode/issues/5)✅ |
| 16 | +- [283. 移动零 ](https://github.com/Geekhyt/javascript-leetcode/issues/6)✅ |
17 | 17 |
|
18 | 18 | ## 链表
|
19 | 19 |
|
20 |
| -- [19. 删除链表的倒数第 N 个结点](https://github.com/Geekhyt/javascript-leetcode/issues/12) |
21 |
| -- [21. 合并两个有序链表](https://github.com/Geekhyt/javascript-leetcode/issues/7) |
22 |
| -- [24. 两两交换链表中的节点](https://github.com/Geekhyt/javascript-leetcode/issues/8) |
23 |
| -- [141. 环形链表](https://github.com/Geekhyt/javascript-leetcode/issues/9) |
24 |
| -- [206. 反转链表](https://github.com/Geekhyt/javascript-leetcode/issues/10) |
25 |
| -- [876. 链表的中间结点](https://github.com/Geekhyt/javascript-leetcode/issues/11) |
| 20 | +- [19. 删除链表的倒数第 N 个结点](https://github.com/Geekhyt/javascript-leetcode/issues/12)✅ |
| 21 | +- [21. 合并两个有序链表](https://github.com/Geekhyt/javascript-leetcode/issues/7)✅ |
| 22 | +- [24. 两两交换链表中的节点](https://github.com/Geekhyt/javascript-leetcode/issues/8)✅ |
| 23 | +- [141. 环形链表](https://github.com/Geekhyt/javascript-leetcode/issues/9)✅ |
| 24 | +- [206. 反转链表](https://github.com/Geekhyt/javascript-leetcode/issues/10)✅ |
| 25 | +- [876. 链表的中间结点](https://github.com/Geekhyt/javascript-leetcode/issues/11)✅ |
26 | 26 |
|
27 | 27 | ## 树
|
28 | 28 |
|
29 | 29 | - [94. 二叉树的中序遍历](https://github.com/Geekhyt/javascript-leetcode/issues/13)
|
30 |
| -- [144. 二叉树的前序遍历](https://github.com/Geekhyt/javascript-leetcode/issues/14) |
31 |
| -- [145. 二叉树的后序遍历](https://github.com/Geekhyt/javascript-leetcode/issues/15) |
| 30 | +- [144. 二叉树的前序遍历](https://github.com/Geekhyt/javascript-leetcode/issues/14)✅ |
| 31 | +- [145. 二叉树的后序遍历](https://github.com/Geekhyt/javascript-leetcode/issues/15)✅ |
32 | 32 | - [100. 相同的树](https://github.com/Geekhyt/javascript-leetcode/issues/16)
|
33 | 33 | - [101. 对称二叉树](https://github.com/Geekhyt/javascript-leetcode/issues/17)
|
34 | 34 | - [102. 二叉树的层序遍历](https://github.com/Geekhyt/javascript-leetcode/issues/18)
|
35 |
| -- [104. 二叉树的最大深度](https://github.com/Geekhyt/javascript-leetcode/issues/19) |
36 |
| -- [226. 翻转二叉树](https://github.com/Geekhyt/javascript-leetcode/issues/20) |
| 35 | +- [104. 二叉树的最大深度](https://github.com/Geekhyt/javascript-leetcode/issues/19)✅ |
| 36 | +- [226. 翻转二叉树](https://github.com/Geekhyt/javascript-leetcode/issues/20)✅ |
37 | 37 |
|
38 | 38 | ## 栈
|
39 | 39 |
|
40 |
| -- [20. 有效的括号](https://github.com/Geekhyt/javascript-leetcode/issues/21) |
41 |
| -- [84. 柱状图中最大的矩形](https://github.com/Geekhyt/javascript-leetcode/issues/22) |
| 40 | +- [20. 有效的括号](https://github.com/Geekhyt/javascript-leetcode/issues/21)✅ |
| 41 | +- [84. 柱状图中最大的矩形](https://github.com/Geekhyt/javascript-leetcode/issues/22)✅ |
42 | 42 | - [155. 最小栈](https://github.com/Geekhyt/javascript-leetcode/issues/23)
|
43 | 43 |
|
44 | 44 | ## 贪心
|
45 | 45 |
|
46 | 46 | - [55. 跳跃游戏](https://github.com/Geekhyt/javascript-leetcode/issues/24)
|
47 |
| -- [455. 分发饼干](https://github.com/Geekhyt/javascript-leetcode/issues/25) |
48 |
| -- [860. 柠檬水找零](https://github.com/Geekhyt/javascript-leetcode/issues/26) |
| 47 | +- [455. 分发饼干](https://github.com/Geekhyt/javascript-leetcode/issues/25)✅ |
| 48 | +- [860. 柠檬水找零](https://github.com/Geekhyt/javascript-leetcode/issues/26)✅ |
49 | 49 |
|
50 | 50 | ## 回溯
|
51 | 51 | - [17. 电话号码的字母组合](https://github.com/Geekhyt/javascript-leetcode/issues/27)
|
|
59 | 59 |
|
60 | 60 | ## 字符串
|
61 | 61 | - [125. 验证回文串](https://github.com/Geekhyt/javascript-leetcode/issues/35)
|
62 |
| -- [344. 反转字符串](https://github.com/Geekhyt/javascript-leetcode/issues/36) |
| 62 | +- [344. 反转字符串](https://github.com/Geekhyt/javascript-leetcode/issues/36)✅ |
63 | 63 | - [415. 字符串相加](https://github.com/Geekhyt/javascript-leetcode/issues/37)
|
64 | 64 |
|
65 | 65 | ## 排序
|
|
73 | 73 | ## 动态规划
|
74 | 74 | - [70. 爬楼梯](https://github.com/Geekhyt/javascript-leetcode/issues/38)
|
75 | 75 | - [一口气团灭 6 道股票算法](https://github.com/Geekhyt/javascript-leetcode/issues/45)
|
76 |
| - - 121.买卖股票的最佳时机 |
77 |
| - - 122.买卖股票的最佳时机 II |
| 76 | + - 121.买卖股票的最佳时机✅ |
| 77 | + - 122.买卖股票的最佳时机 II✅ |
78 | 78 | - 123.买卖股票的最佳时机 III
|
79 | 79 | - 188.买卖股票的最佳时机 IV
|
80 | 80 | - 309.最佳买卖股票时机含冷冻期
|
81 | 81 | - 714.买卖股票的最佳时机含手续费
|
82 |
| -- [198. 打家劫舍](https://github.com/Geekhyt/javascript-leetcode/issues/46) |
| 82 | +- [198. 打家劫舍](https://github.com/Geekhyt/javascript-leetcode/issues/46)✅ |
83 | 83 | - [5. 最长回文子串](https://github.com/Geekhyt/javascript-leetcode/issues/47)
|
84 | 84 | - [53. 最大子序和](https://github.com/Geekhyt/javascript-leetcode/issues/48)
|
85 | 85 | - [300. 最长递增子序列](https://github.com/Geekhyt/javascript-leetcode/issues/49)
|
|
92 | 92 | - [剑指 Offer 42. 连续子数组的最大和](https://github.com/Geekhyt/javascript-leetcode/issues/56)
|
93 | 93 | - [139. 单词拆分](https://github.com/Geekhyt/javascript-leetcode/issues/57)
|
94 | 94 | - [887. 鸡蛋掉落](https://github.com/Geekhyt/javascript-leetcode/issues/58)
|
95 |
| -- [279. 完全平方数](https://github.com/Geekhyt/javascript-leetcode/issues/59) |
| 95 | +- [279. 完全平方数](https://github.com/Geekhyt/javascript-leetcode/issues/59)✅ |
0 commit comments