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 f4cafbc commit 3e89531Copy full SHA for 3e89531
1 file changed
longest-consecutive-sequence/doh6077.py
@@ -32,3 +32,10 @@ def longestConsecutive(self, nums: List[int]) -> int:
32
r += 1
33
34
return longest
35
+
36
37
38
39
+nums = [1,2,3,5]
40
+nums.sort()
41
+print(nums)
0 commit comments