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

This commit is contained in:
jianghongcheng
2023-06-06 15:29:32 -05:00
committed by GitHub
parent d3a07fa1bd
commit a7d546ca2a

View File

@ -141,8 +141,10 @@ class Solution {
} }
} }
``` ```
DP
Python Python
DP
```python ```python
class Solution: class Solution:
def lengthOfLIS(self, nums: List[int]) -> int: def lengthOfLIS(self, nums: List[int]) -> int: