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 8f0d275 commit f445f71Copy full SHA for f445f71
top-k-frequent-elements/EstherKim97.py
@@ -13,4 +13,4 @@ def topKFrequent(self, nums, k):
13
data = sorted(data, reverse=True, key=lambda x:[1])
14
15
return [x[1] for x in data[:k]]
16
-
+
0 commit comments