mirror of
https://github.com/youngyangyang04/leetcode-master.git
synced 2025-07-09 19:44:45 +08:00
Update 0300.最长上升子序列.md
This commit is contained in:
@ -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 {
|
||||||
|
Reference in New Issue
Block a user