Skip to content

Commit 5a7c47a

Browse files
committed
fixed small issue
1 parent b0c959e commit 5a7c47a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/0128-longest-consecutive-sequence.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
class Solution:
2-
def longestConsecutive(self, nums: list[int]) -> int:
2+
def longestConsecutive(self, nums: List[int]) -> int:
33
numSet = set(nums)
44
longest = 0
55

0 commit comments

Comments
 (0)