diff --git a/problems/0300.最长上升子序列.md b/problems/0300.最长上升子序列.md index 98d7b14f..54249331 100644 --- a/problems/0300.最长上升子序列.md +++ b/problems/0300.最长上升子序列.md @@ -141,8 +141,10 @@ class Solution { } } ``` -DP + Python: + +DP ```python class Solution: def lengthOfLIS(self, nums: List[int]) -> int: