We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 228f63b commit a4fa1eaCopy full SHA for a4fa1ea
top-k-frequent-elements/KwonNayeon.py
@@ -31,4 +31,3 @@ def topKFrequent(self, nums: List[int], k: int) -> List[int]:
31
for i in range(k):
32
result.append(sorted_frequency[i][0])
33
return result
34
-
0 commit comments