Skip to content

Commit 3e89531

Browse files
committed
comment out the previous solution
1 parent f4cafbc commit 3e89531

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

longest-consecutive-sequence/doh6077.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,10 @@ def longestConsecutive(self, nums: List[int]) -> int:
3232
r += 1
3333

3434
return longest
35+
36+
37+
38+
39+
nums = [1,2,3,5]
40+
nums.sort()
41+
print(nums)

0 commit comments

Comments
 (0)