Skip to content

Commit 8a3c435

Browse files
committed
128
1 parent 2a51874 commit 8a3c435

File tree

2 files changed

+3
-18
lines changed

2 files changed

+3
-18
lines changed

0001-500/Longest Consecutive Sequence.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,6 @@ def longestConsecutive(self, nums: List[int]) -> int:
1010
current_streak += 1
1111
longest_streak = max(longest_streak, current_streak)
1212

13-
return longest_streak
13+
return longest_streak
14+
15+

Palindrome

-17
This file was deleted.

0 commit comments

Comments
 (0)