Skip to content

Commit

Permalink
Update 0300.最长上升子序列.md
Browse files Browse the repository at this point in the history
修改300.最长递增子序列动态数组的定义
  • Loading branch information
Dawn-Fan committed Mar 1, 2022
1 parent 0f3c2ae commit e67bf9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion problems/0300.最长上升子序列.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@

1. dp[i]的定义

**dp[i]表示i之前包括i的最长上升子序列的长度**
**dp[i]表示i之前包括i的以nums[i]结尾最长上升子序列的长度**

2. 状态转移方程

Expand Down

0 comments on commit e67bf9d

Please sign in to comment.