Skip to content

Commit e1ad7ea

Browse files
author
王鹏
committed
docs: add _119_getRow
1 parent 338e617 commit e1ad7ea

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# LeetCode-Java
22
## 说明
3-
- leetcode练习,坚持每天一道,目前已完成246道
3+
- leetcode练习,坚持每天一道,目前已完成247道
44
- 解题语言是Java
55
- 每道题都是可编译运行的
66
- 每道题有自己的方法和他人优秀解法
@@ -14,7 +14,7 @@
1414

1515
- [x] [118. 杨辉三角](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_118_generate.java)
1616

17-
- [ ] [119. 杨辉三角 II](https://leetcode-cn.com/problems/pascals-triangle-ii/)
17+
- [x] [119. 杨辉三角 II](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_119_getRow.java)
1818

1919
- [ ] [129. 求根到叶子节点数字之和](https://leetcode-cn.com/problems/sum-root-to-leaf-numbers/)
2020

@@ -59,9 +59,9 @@
5959
- [线段树](https://leetcode-cn.com/tag/segment-tree/)(9)
6060
- [二叉搜索树](https://leetcode-cn.com/tag/binary-search-tree/)(15)
6161

62-
### 题目列表(更新中—已完成246
62+
### 题目列表(更新中—已完成247
6363

64-
[Leetcode-Java(240+题解,持续更新、欢迎star&留言&交流)](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_118_generate.java)
64+
[Leetcode-Java(240+题解,持续更新、欢迎star&留言&交流)](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_119_getRow.java)
6565

6666
| No | 题目 | 解决方案 | 相关话题 | 难度 | 备注 |
6767
| ----- | ------------------------------------------------------------ | ------------------------------------------------------------ | ------------------------------------------------------------ | ------ | ------------------------------------------------------------ |
@@ -183,6 +183,7 @@
183183
| #116 | [填充每个节点的下一个右侧节点指针](https://leetcode-cn.com/problems/populating-next-right-pointers-in-each-node/) | [Connect](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_116_connect.java) | [](https://leetcode-cn.com/tag/tree/)[DFS](https://leetcode-cn.com/tag/depth-first-search/) | Medium | |
184184
| #117 | [填充每个节点的下一个右侧节点指针 II](https://leetcode-cn.com/problems/populating-next-right-pointers-in-each-node-ii/) | [Connect](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_117_connect.java) | [](https://leetcode-cn.com/tag/tree/)[DFS](https://leetcode-cn.com/tag/depth-first-search/) | Medium | |
185185
| #118 | [杨辉三角](https://leetcode-cn.com/problems/pascals-triangle/) | [Generate](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_118_generate.java) | [数组](<https://leetcode-cn.com/tag/array/>) | Easy | |
186+
| #119 | [杨辉三角 II](https://leetcode-cn.com/problems/pascals-triangle-ii/) | [GetRow](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_119_getRow.java) | [数组](<https://leetcode-cn.com/tag/array/>) | Easy | |
186187
| #120 | [三角形最小路径和](https://leetcode-cn.com/problems/triangle/) | [MinimumTotal](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_120_minimumTotal.java) | [数组](<https://leetcode-cn.com/tag/array/>)[动态规划](<https://leetcode-cn.com/tag/dynamic-programming/>) | Medium | |
187188
| #121 | [买卖股票的最佳时机](https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock/) | [MaxProfit](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_121_maxProfit.java) | [数组](<https://leetcode-cn.com/tag/array/>)[动态规划](<https://leetcode-cn.com/tag/dynamic-programming/>) | Easy | |
188189
| #122 | [买卖股票的最佳时机 II](https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock-ii/) | [MaxProfit](https://github.com/pphdsny/Leetcode-Java/blob/master/src/pp/arithmetic/leetcode/_122_maxProfit.java) | [贪心算法](https://leetcode-cn.com/tag/greedy/)[数组](<https://leetcode-cn.com/tag/array/>) | Easy | |

0 commit comments

Comments
 (0)