Skip to content

Commit 86658cb

Browse files
committed
fix: add new line for lint rules
1 parent 9a395e9 commit 86658cb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

top-k-frequent-elements/dusunax.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,5 @@ def topKFrequent(self, nums: List[int], k: int) -> List[int]:
3030
for e in sorted_frequencies: # TC: O(k)
3131
result.append(e[0])
3232

33-
return result[0:k]
33+
return result[0:k]
34+

0 commit comments

Comments
 (0)