File tree Expand file tree Collapse file tree 3 files changed +3
-1
lines changed
10.Dynamic-Programming/08.Counting-DP Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 325
325
326
326
### [ 计数 DP 题目] ( ../../Contents/10.Dynamic-Programming/08.Counting-DP/02.Counting-DP-List.md )
327
327
328
- ###### 0062. 不同路径、0063. 不同路径 II、0096. 不同的二叉搜索树、1259. 不相交的握手、0790. 多米诺和托米诺平铺、0070. 爬楼梯、0746. 使用最小花费爬楼梯、0509. 斐波那契数、1137. 第 N 个泰波那契数
328
+ ###### 0062. 不同路径、0063. 不同路径 II、0343. 整数拆分、 0096. 不同的二叉搜索树、1259. 不相交的握手、0790. 多米诺和托米诺平铺、0070. 爬楼梯、0746. 使用最小花费爬楼梯、0509. 斐波那契数、1137. 第 N 个泰波那契数
329
329
330
330
### [ 数位 DP 题目] ( ../../Contents/10.Dynamic-Programming/09.Digit-DP/02.Digit-DP-List.md )
331
331
Original file line number Diff line number Diff line change 1057
1057
| :------ | :------ | :------ | :------ | :------ |
1058
1058
| 0062 | [ 不同路径] ( https://leetcode.cn/problems/unique-paths/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0062.%20%E4%B8%8D%E5%90%8C%E8%B7%AF%E5%BE%84.md ) | 数学、动态规划、组合数学 | 中等 |
1059
1059
| 0063 | [ 不同路径 II] ( https://leetcode.cn/problems/unique-paths-ii/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0063.%20%E4%B8%8D%E5%90%8C%E8%B7%AF%E5%BE%84%20II.md ) | 数组、动态规划、矩阵 | 中等 |
1060
+ | 0343 | [ 整数拆分] ( https://leetcode.cn/problems/integer-break/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0343.%20%E6%95%B4%E6%95%B0%E6%8B%86%E5%88%86.md ) | 数学、动态规划 | 中等 |
1060
1061
| 0096 | [ 不同的二叉搜索树] ( https://leetcode.cn/problems/unique-binary-search-trees/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0096.%20%E4%B8%8D%E5%90%8C%E7%9A%84%E4%BA%8C%E5%8F%89%E6%90%9C%E7%B4%A2%E6%A0%91.md ) | 树、二叉搜索树、数学、动态规划、二叉树 | 中等 |
1061
1062
| 1259 | [ 不相交的握手] ( https://leetcode.cn/problems/handshakes-that-dont-cross/ ) | | 数学、动态规划 | 困难 |
1062
1063
| 0790 | [ 多米诺和托米诺平铺] ( https://leetcode.cn/problems/domino-and-tromino-tiling/ ) | | 动态规划 | 中等 |
Original file line number Diff line number Diff line change 4
4
| :------ | :------ | :------ | :------ | :------ |
5
5
| 0062 | [ 不同路径] ( https://leetcode.cn/problems/unique-paths/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0062.%20%E4%B8%8D%E5%90%8C%E8%B7%AF%E5%BE%84.md ) | 数学、动态规划、组合数学 | 中等 |
6
6
| 0063 | [ 不同路径 II] ( https://leetcode.cn/problems/unique-paths-ii/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0063.%20%E4%B8%8D%E5%90%8C%E8%B7%AF%E5%BE%84%20II.md ) | 数组、动态规划、矩阵 | 中等 |
7
+ | 0343 | [ 整数拆分] ( https://leetcode.cn/problems/integer-break/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0343.%20%E6%95%B4%E6%95%B0%E6%8B%86%E5%88%86.md ) | 数学、动态规划 | 中等 |
7
8
| 0096 | [ 不同的二叉搜索树] ( https://leetcode.cn/problems/unique-binary-search-trees/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0096.%20%E4%B8%8D%E5%90%8C%E7%9A%84%E4%BA%8C%E5%8F%89%E6%90%9C%E7%B4%A2%E6%A0%91.md ) | 树、二叉搜索树、数学、动态规划、二叉树 | 中等 |
8
9
| 1259 | [ 不相交的握手] ( https://leetcode.cn/problems/handshakes-that-dont-cross/ ) | | 数学、动态规划 | 困难 |
9
10
| 0790 | [ 多米诺和托米诺平铺] ( https://leetcode.cn/problems/domino-and-tromino-tiling/ ) | | 动态规划 | 中等 |
You can’t perform that action at this time.
0 commit comments