File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed
09.Algorithm-Base/01.Enumeration-Algorithm Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 235
235
236
236
### [ 枚举算法题目] ( ../../Contents/09.Algorithm-Base/01.Enumeration-Algorithm/02.Enumeration-Algorithm-List.md )
237
237
238
- ###### 0204. 计数质数、剑指 Offer 57 - II. 和为s的连续正数序列、0800. 相似 RGB 颜色
238
+ ###### 0001. 两数之和、 0204. 计数质数、1925. 统计平方和三元组的数目、 剑指 Offer 57 - II. 和为s的连续正数序列、0078. 子集、0090. 子集 II 、0800. 相似 RGB 颜色
239
239
240
240
### [ 递归、递推算法题目] ( ../../Contents/09.Algorithm-Base/02.Recursive-Algorithm/02.Recursive-Algorithm-List.md )
241
241
Original file line number Diff line number Diff line change 636
636
637
637
| 题号 | 标题 | 题解 | 标签 | 难度 |
638
638
| :------ | :------ | :------ | :------ | :------ |
639
+ | 0001 | [ 两数之和] ( https://leetcode-cn.com/problems/two-sum/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0001.%20%E4%B8%A4%E6%95%B0%E4%B9%8B%E5%92%8C.md ) | 数组、哈希表 | 简单 |
639
640
| 0204 | [ 计数质数] ( https://leetcode-cn.com/problems/count-primes/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0204.%20%E8%AE%A1%E6%95%B0%E8%B4%A8%E6%95%B0.md ) | 数学、哈希表 | 简单 |
641
+ | 1925 | 统计平方和三元组的数目 | | | |
640
642
| 剑指 Offer 57 - II | [ 和为s的连续正数序列] ( https://leetcode-cn.com/problems/he-wei-sde-lian-xu-zheng-shu-xu-lie-lcof/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/%E5%89%91%E6%8C%87%20Offer%2057%20-%20II.%20%E5%92%8C%E4%B8%BAs%E7%9A%84%E8%BF%9E%E7%BB%AD%E6%AD%A3%E6%95%B0%E5%BA%8F%E5%88%97.md ) | 数学、双指针、枚举 | 简单 |
643
+ | 0078 | [ 子集] ( https://leetcode-cn.com/problems/subsets/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0078.%20%E5%AD%90%E9%9B%86.md ) | 位运算、数组、回溯算法 | 中等 |
644
+ | 0090 | [ 子集 II] ( https://leetcode-cn.com/problems/subsets-ii/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0090.%20%E5%AD%90%E9%9B%86%20II.md ) | 位运算、数组、回溯 | 中等 |
641
645
| 0800 | 相似 RGB 颜色 | | | |
642
646
643
647
### 递归、递推算法题目
Original file line number Diff line number Diff line change 2
2
3
3
| 题号 | 标题 | 题解 | 标签 | 难度 |
4
4
| :------ | :------ | :------ | :------ | :------ |
5
+ | 0001 | [ 两数之和] ( https://leetcode-cn.com/problems/two-sum/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0001.%20%E4%B8%A4%E6%95%B0%E4%B9%8B%E5%92%8C.md ) | 数组、哈希表 | 简单 |
5
6
| 0204 | [ 计数质数] ( https://leetcode-cn.com/problems/count-primes/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0204.%20%E8%AE%A1%E6%95%B0%E8%B4%A8%E6%95%B0.md ) | 数学、哈希表 | 简单 |
7
+ | 1925 | 统计平方和三元组的数目 | | | |
6
8
| 剑指 Offer 57 - II | [ 和为s的连续正数序列] ( https://leetcode-cn.com/problems/he-wei-sde-lian-xu-zheng-shu-xu-lie-lcof/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/%E5%89%91%E6%8C%87%20Offer%2057%20-%20II.%20%E5%92%8C%E4%B8%BAs%E7%9A%84%E8%BF%9E%E7%BB%AD%E6%AD%A3%E6%95%B0%E5%BA%8F%E5%88%97.md ) | 数学、双指针、枚举 | 简单 |
9
+ | 0078 | [ 子集] ( https://leetcode-cn.com/problems/subsets/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0078.%20%E5%AD%90%E9%9B%86.md ) | 位运算、数组、回溯算法 | 中等 |
10
+ | 0090 | [ 子集 II] ( https://leetcode-cn.com/problems/subsets-ii/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0090.%20%E5%AD%90%E9%9B%86%20II.md ) | 位运算、数组、回溯 | 中等 |
7
11
| 0800 | 相似 RGB 颜色 | | | |
8
12
You can’t perform that action at this time.
0 commit comments