Skip to content

Commit b80c0da

Browse files
author
sejineer
committed
longest-consecutive-sequence solution fix lint
1 parent c3a1c82 commit b80c0da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

longest-consecutive-sequence/sejineer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ def longestConsecutive(self, nums: List[int]) -> int:
1414
length += 1
1515
result = max(result, length)
1616

17-
return result
17+
return result

0 commit comments

Comments
 (0)