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

This commit is contained in:
程序员小贺
2021-05-16 12:56:01 +08:00
committed by GitHub
parent 54a98e7e63
commit 5fe144aeb3

View File

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