Skip to content

Commit 228f63b

Browse files
committed
Add newline at the end of the file to comply with the CI requirements
1 parent 5212548 commit 228f63b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

top-k-frequent-elements/KwonNayeon.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
sorted_frequency = sorted(frequency.items(), key=lambda x: x[1], reverse=True)
3131
for i in range(k):
3232
result.append(sorted_frequency[i][0])
33-
return result
33+
return result
34+

0 commit comments

Comments
 (0)