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 79680f3 commit 8f0d275Copy full SHA for 8f0d275
top-k-frequent-elements/EstherKim97.py
@@ -13,6 +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
-
17
- #nums.count(i)
18
+
0 commit comments