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 004be14 commit 596cce5Copy full SHA for 596cce5
top-k-frequent-elements/do-heewan.py
@@ -12,4 +12,4 @@ def topKFrequent(self, nums, k):
12
count = sorted(count.items(), key=lambda x : x[1], reverse=True)
13
14
return [item[0] for item in count[:k]]
15
-
+
0 commit comments