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 a418559 commit 6214075Copy full SHA for 6214075
top-k-frequent-elements/HYUNAHKO.py
@@ -11,4 +11,4 @@ def topKFrequent(self, nums: List[int], k: int) -> List[int]:
11
sorted_items = sorted(value_dict.items(), key=lambda x: x[1], reverse=True)
12
13
return [key for key, value in sorted_items[:k]]
14
-
+
0 commit comments