0300. 最长递增子序列 #93
Replies: 1 comment
-
如果nums[j]<=nums[i], 则num[i]不可以接在nums[j]后面,这里应该是如果nums[j]>=nums[i] |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
0300. 最长递增子序列 | 算法通关手册
https://algo.itcharge.cn/Solutions/0300-0399/longest-increasing-subsequence/
Beta Was this translation helpful? Give feedback.
All reactions