Skip to content

Commit e25e61e

Browse files
author
sejineer
committed
top-k-frequent-elements solution fix lint
1 parent 6f0b00b commit e25e61e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

top-k-frequent-elements/sejineer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ def topKFrequent(self, nums: List[int], k: int) -> List[int]:
4242
result.append(num)
4343
if len(result) == k:
4444
return result
45-
45+

0 commit comments

Comments
 (0)