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

This commit is contained in:
jianghongcheng 2023-06-06 15:29:32 -05:00 committed by GitHub
parent d3a07fa1bd
commit a7d546ca2a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

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