File tree 4 files changed +4
-4
lines changed
01.Array/04.Array-Two-Pointers
09.Algorithm-Base/05.Greedy-Algorithm
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 83
83
84
84
#### 分离双指针题目
85
85
86
- ###### 0350. 两个数组的交集 II、0925. 长按键入、0844. 比较含退格的字符串、1229. 安排会议日程、0415. 字符串相加
86
+ ###### 0350. 两个数组的交集 II、0925. 长按键入、0844. 比较含退格的字符串、1229. 安排会议日程、0415. 字符串相加、0392. 判断子序列
87
87
88
88
### [ 滑动窗口题目] ( ../../Contents/01.Array/05.Array-Sliding-Window/02.Array-Sliding-Window-List.md )
89
89
251
251
252
252
### [ 贪心算法题目] ( ../../Contents/09.Algorithm-Base/05.Greedy-Algorithm/02.Greedy-Algorithm-List.md )
253
253
254
- ###### 0455. 分发饼干、0860. 柠檬水找零、0056. 合并区间、0435. 无重叠区间、0452. 用最少数量的箭引爆气球、0055. 跳跃游戏、0045. 跳跃游戏 II、0392. 判断子序列、 0122. 买卖股票的最佳时机 II、0561. 数组拆分、1710. 卡车上的最大单元数、1217. 玩筹码、1247. 交换字符使得字符串相同、1400. 构造 K 个回文字符串、0921. 使括号有效的最少添加、1029. 两地调度、1605. 给定行和列的和求可行矩阵、0135. 分发糖果、0134. 加油站、0053. 最大子数组和、0376. 摆动序列、0738. 单调递增的数字、0402. 移掉 K 位数字、0861. 翻转矩阵后的得分、0670. 最大交换
254
+ ###### 0455. 分发饼干、0860. 柠檬水找零、0056. 合并区间、0435. 无重叠区间、0452. 用最少数量的箭引爆气球、0055. 跳跃游戏、0045. 跳跃游戏 II、0122. 买卖股票的最佳时机 II、0561. 数组拆分、1710. 卡车上的最大单元数、1217. 玩筹码、1247. 交换字符使得字符串相同、1400. 构造 K 个回文字符串、0921. 使括号有效的最少添加、1029. 两地调度、1605. 给定行和列的和求可行矩阵、0135. 分发糖果、0134. 加油站、0053. 最大子数组和、0376. 摆动序列、0738. 单调递增的数字、0402. 移掉 K 位数字、0861. 翻转矩阵后的得分、0670. 最大交换
255
255
256
256
### [ 位运算题目] ( ../../Contents/09.Algorithm-Base/06.Bit-Operation/02.Bit-Operation-List.md )
257
257
Original file line number Diff line number Diff line change 212
212
| 0844 | [ 比较含退格的字符串] ( https://leetcode.cn/problems/backspace-string-compare/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0844.%20%E6%AF%94%E8%BE%83%E5%90%AB%E9%80%80%E6%A0%BC%E7%9A%84%E5%AD%97%E7%AC%A6%E4%B8%B2.md ) | 栈、双指针、字符串、模拟 | 简单 |
213
213
| 1229 | [ 安排会议日程] ( https://leetcode.cn/problems/meeting-scheduler/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/1229.%20%E5%AE%89%E6%8E%92%E4%BC%9A%E8%AE%AE%E6%97%A5%E7%A8%8B.md ) | 数组、双指针、排序 | 中等 |
214
214
| 0415 | [ 字符串相加] ( https://leetcode.cn/problems/add-strings/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0415.%20%E5%AD%97%E7%AC%A6%E4%B8%B2%E7%9B%B8%E5%8A%A0.md ) | 数学、字符串、模拟 | 简单 |
215
+ | 0392 | [ 判断子序列] ( https://leetcode.cn/problems/is-subsequence/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0392.%20%E5%88%A4%E6%96%AD%E5%AD%90%E5%BA%8F%E5%88%97.md ) | 双指针、字符串、动态规划 | 简单 |
215
216
216
217
### 滑动窗口题目
217
218
778
779
| 0452 | [ 用最少数量的箭引爆气球] ( https://leetcode.cn/problems/minimum-number-of-arrows-to-burst-balloons/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0452.%20%E7%94%A8%E6%9C%80%E5%B0%91%E6%95%B0%E9%87%8F%E7%9A%84%E7%AE%AD%E5%BC%95%E7%88%86%E6%B0%94%E7%90%83.md ) | 贪心、数组、排序 | 中等 |
779
780
| 0055 | [ 跳跃游戏] ( https://leetcode.cn/problems/jump-game/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0055.%20%E8%B7%B3%E8%B7%83%E6%B8%B8%E6%88%8F.md ) | 贪心、数组、动态规划 | 中等 |
780
781
| 0045 | [ 跳跃游戏 II] ( https://leetcode.cn/problems/jump-game-ii/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0045.%20%E8%B7%B3%E8%B7%83%E6%B8%B8%E6%88%8F%20II.md ) | 贪心、数组、动态规划 | 中等 |
781
- | 0392 | [ 判断子序列] ( https://leetcode.cn/problems/is-subsequence/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0392.%20%E5%88%A4%E6%96%AD%E5%AD%90%E5%BA%8F%E5%88%97.md ) | 双指针、字符串、动态规划 | 简单 |
782
782
| 0122 | [ 买卖股票的最佳时机 II] ( https://leetcode.cn/problems/best-time-to-buy-and-sell-stock-ii/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0122.%20%E4%B9%B0%E5%8D%96%E8%82%A1%E7%A5%A8%E7%9A%84%E6%9C%80%E4%BD%B3%E6%97%B6%E6%9C%BA%20II.md ) | 贪心、数组 | 中等 |
783
783
| 0561 | [ 数组拆分] ( https://leetcode.cn/problems/array-partition/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0561.%20%E6%95%B0%E7%BB%84%E6%8B%86%E5%88%86.md ) | 贪心、数组、计数排序、排序 | 简单 |
784
784
| 1710 | [ 卡车上的最大单元数] ( https://leetcode.cn/problems/maximum-units-on-a-truck/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/1710.%20%E5%8D%A1%E8%BD%A6%E4%B8%8A%E7%9A%84%E6%9C%80%E5%A4%A7%E5%8D%95%E5%85%83%E6%95%B0.md ) | 贪心、数组、排序 | 简单 |
Original file line number Diff line number Diff line change 47
47
| 0844 | [ 比较含退格的字符串] ( https://leetcode.cn/problems/backspace-string-compare/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0844.%20%E6%AF%94%E8%BE%83%E5%90%AB%E9%80%80%E6%A0%BC%E7%9A%84%E5%AD%97%E7%AC%A6%E4%B8%B2.md ) | 栈、双指针、字符串、模拟 | 简单 |
48
48
| 1229 | [ 安排会议日程] ( https://leetcode.cn/problems/meeting-scheduler/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/1229.%20%E5%AE%89%E6%8E%92%E4%BC%9A%E8%AE%AE%E6%97%A5%E7%A8%8B.md ) | 数组、双指针、排序 | 中等 |
49
49
| 0415 | [ 字符串相加] ( https://leetcode.cn/problems/add-strings/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0415.%20%E5%AD%97%E7%AC%A6%E4%B8%B2%E7%9B%B8%E5%8A%A0.md ) | 数学、字符串、模拟 | 简单 |
50
+ | 0392 | [ 判断子序列] ( https://leetcode.cn/problems/is-subsequence/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0392.%20%E5%88%A4%E6%96%AD%E5%AD%90%E5%BA%8F%E5%88%97.md ) | 双指针、字符串、动态规划 | 简单 |
50
51
Original file line number Diff line number Diff line change 9
9
| 0452 | [ 用最少数量的箭引爆气球] ( https://leetcode.cn/problems/minimum-number-of-arrows-to-burst-balloons/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0452.%20%E7%94%A8%E6%9C%80%E5%B0%91%E6%95%B0%E9%87%8F%E7%9A%84%E7%AE%AD%E5%BC%95%E7%88%86%E6%B0%94%E7%90%83.md ) | 贪心、数组、排序 | 中等 |
10
10
| 0055 | [ 跳跃游戏] ( https://leetcode.cn/problems/jump-game/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0055.%20%E8%B7%B3%E8%B7%83%E6%B8%B8%E6%88%8F.md ) | 贪心、数组、动态规划 | 中等 |
11
11
| 0045 | [ 跳跃游戏 II] ( https://leetcode.cn/problems/jump-game-ii/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0045.%20%E8%B7%B3%E8%B7%83%E6%B8%B8%E6%88%8F%20II.md ) | 贪心、数组、动态规划 | 中等 |
12
- | 0392 | [ 判断子序列] ( https://leetcode.cn/problems/is-subsequence/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0392.%20%E5%88%A4%E6%96%AD%E5%AD%90%E5%BA%8F%E5%88%97.md ) | 双指针、字符串、动态规划 | 简单 |
13
12
| 0122 | [ 买卖股票的最佳时机 II] ( https://leetcode.cn/problems/best-time-to-buy-and-sell-stock-ii/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0122.%20%E4%B9%B0%E5%8D%96%E8%82%A1%E7%A5%A8%E7%9A%84%E6%9C%80%E4%BD%B3%E6%97%B6%E6%9C%BA%20II.md ) | 贪心、数组 | 中等 |
14
13
| 0561 | [ 数组拆分] ( https://leetcode.cn/problems/array-partition/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/0561.%20%E6%95%B0%E7%BB%84%E6%8B%86%E5%88%86.md ) | 贪心、数组、计数排序、排序 | 简单 |
15
14
| 1710 | [ 卡车上的最大单元数] ( https://leetcode.cn/problems/maximum-units-on-a-truck/ ) | [ Python] ( https://github.com/itcharge/LeetCode-Py/blob/main/Solutions/1710.%20%E5%8D%A1%E8%BD%A6%E4%B8%8A%E7%9A%84%E6%9C%80%E5%A4%A7%E5%8D%95%E5%85%83%E6%95%B0.md ) | 贪心、数组、排序 | 简单 |
You can’t perform that action at this time.
0 commit comments