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

This commit is contained in:
程序员小贺 2021-05-16 12:56:01 +08:00 committed by GitHub
parent 54a98e7e63
commit 5fe144aeb3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ Python
Go
```
```go
func lengthOfLIS(nums []int ) int {
dp := []int{}
for _, num := range nums {