We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6f5295 commit 68ce1caCopy full SHA for 68ce1ca
longest-increasing-subsequence/changhyumm.py
@@ -11,4 +11,4 @@ def lengthOfLIS(self, nums: List[int]) -> int:
11
# nums[i]가 더 큰 경우 길이 + 1
12
dp[i] = max(dp[i], dp[j] + 1)
13
14
- return max(dp) # 전체 중 최대
+ return max(dp) # 전체 중 최대
0 commit comments