Skip to content

Commit 86ada54

Browse files
committed
2022.3.6 和兄弟们大西北见了
1 parent ca58bb4 commit 86ada54

1 file changed

Lines changed: 15 additions & 12 deletions

File tree

leetcode/刷题册.md

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3413,31 +3413,35 @@ void backtracking(参数) {
34133413
34143414
#### [188. 买卖股票的最佳时机 IV](https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock-iv/)X 想的不够多 看了答案 仔细想想 对比的来看
34153415
3416+
#### [309. 最佳买卖股票时机含冷冻期](https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock-with-cooldown/)X 再看 但是为什么对 我得好好思考 应该是另个想法 状态有很多种要区分
34163417
3418+
#### [714. 买卖股票的最佳时机含手续费](https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock-with-transaction-fee/)没问题
34173419
3420+
***==我觉得股票问题的实质 就是确定各个状态 然后把各个状态的递推公式找出来==***
34183421
3422+
#### [300. 最长递增子序列](https://leetcode-cn.com/problems/longest-increasing-subsequence/)没问题 继续冲 曾
34193423
3424+
#### [674. 最长连续递增序列](https://leetcode-cn.com/problems/longest-continuous-increasing-subsequence/)没问题
34203425
3426+
#### [718. 最长重复子数组](https://leetcode-cn.com/problems/maximum-length-of-repeated-subarray/)没问题
34213427
3428+
#### [1143. 最长公共子序列](https://leetcode-cn.com/problems/longest-common-subsequence/)X 把一些情况忽略掉了 我直接
34223429
3430+
#### [1035. 不相交的线](https://leetcode-cn.com/problems/uncrossed-lines/)没问题 和上一题一样
34233431
3432+
#### [53. 最大子数组和](https://leetcode-cn.com/problems/maximum-subarray/)easy
34243433
3434+
#### [392. 判断子序列](https://leetcode-cn.com/problems/is-subsequence/)细枝末节的问题 一定要注意 尤其是什么越界 这题应该是删除元素
34253435
3436+
#### [115. 不同的子序列](https://leetcode-cn.com/problems/distinct-subsequences/)X下标的定义没有想好 再仔细想想
34263437
3438+
#### [583. 两个字符串的删除操作](https://leetcode-cn.com/problems/delete-operation-for-two-strings/)没问题 题解还有另一种想法 求出两个字符串的最大公共子字符串 然后进行删除 即可
34273439
3440+
#### [72. 编辑距离](https://leetcode-cn.com/problems/edit-distance/)没问题 再回来想想 到时候
34283441
3442+
#### [647. 回文子串](https://leetcode-cn.com/problems/palindromic-substrings/)没问题
34293443
3430-
3431-
3432-
3433-
3434-
3435-
3436-
3437-
3438-
3439-
3440-
3444+
#### [516. 最长回文子序列](https://leetcode-cn.com/problems/longest-palindromic-subsequence/)没问题
34413445
34423446
34433447
@@ -3681,7 +3685,6 @@ class Solution {
36813685
36823686
​ {
36833687
3684-
36853688
​ if (labelDistance.getValue()<maxDistance)
36863689
36873690
​ {

0 commit comments

Comments
 (0)