diff --git a/problems/0300.最长上升子序列.md b/problems/0300.最长上升子序列.md index 27d5b122..ed61a30e 100644 --- a/problems/0300.最长上升子序列.md +++ b/problems/0300.最长上升子序列.md @@ -49,7 +49,7 @@ 3. dp[i]的初始化 -每一个i,对应的dp[i](即最长上升子序列)起始大小至少都是是1. +每一个i,对应的dp[i](即最长上升子序列)起始大小至少都是1. 4. 确定遍历顺序