Update 0300.最长上升子序列.md

修改300.最长递增子序列动态数组的定义
This commit is contained in:
Dawn-private
2022-03-01 19:51:18 +08:00
parent 0f3c2aeec1
commit e67bf9d433

View File

@ -37,7 +37,7 @@
1. dp[i]的定义
**dp[i]表示i之前包括i的最长上升子序列的长度**
**dp[i]表示i之前包括i的以nums[i]结尾最长上升子序列的长度**
2. 状态转移方程