剩余代码误删文件替换

This commit is contained in:
XuDaHaoRen
2021-08-29 20:33:53 +08:00
parent f8215f84e5
commit e1cc87ad9f
2 changed files with 20 additions and 15 deletions

View File

@@ -8,13 +8,13 @@
## 300.最长递增子序列
题目链接:https://leetcode-cn.com/problems/longest-increasing-subsequence/
[力扣题目链接](https://leetcode-cn.com/problems/longest-increasing-subsequence/)
给你一个整数数组 nums ,找到其中最长严格递增子序列的长度。
子序列是由数组派生而来的序列,删除(或不删除)数组中的元素而不改变其余元素的顺序。例如,[3,6,2,7] 是数组 [0,3,1,6,2,2,7] 的子序列。
 
示例 1
输入nums = [10,9,2,5,3,7,101,18]
输出4
@@ -27,7 +27,7 @@
示例 3
输入nums = [7,7,7,7,7,7,7]
输出1
 
提示:
* 1 <= nums.length <= 2500