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

This commit is contained in:
SCCCR 2021-09-04 16:17:25 +08:00 committed by GitHub
parent b8ef037a99
commit 8b9995cf26
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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