diff --git a/problems/0300.最长上升子序列.md b/problems/0300.最长上升子序列.md index f9145f4c..fdd5fda8 100644 --- a/problems/0300.最长上升子序列.md +++ b/problems/0300.最长上升子序列.md @@ -39,7 +39,7 @@ 1. dp[i]的定义 -**dp[i]表示i之前包括i的最长上升子序列**。 +**dp[i]表示i之前包括i的最长上升子序列的长度**。 2. 状态转移方程