Skip to content

Commit

Permalink
Update 0300.最长上升子序列.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jianghongcheng authored Jun 6, 2023
1 parent d3a07fa commit a7d546c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion problems/0300.最长上升子序列.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,10 @@ class Solution {
}
}
```
DP

Python:

DP
```python
class Solution:
def lengthOfLIS(self, nums: List[int]) -> int:
Expand Down

0 comments on commit a7d546c

Please sign in to comment.