leetcode.com/problems/top-k-frequent-elements/
Top K Frequent Elements - LeetCode
Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.
leetcode.com
class Solution:
def topKFrequent(self, nums: List[int], k: int) -> List[int]:
dict = collections.Counter(nums)
output = []
value = dict.most_common(k)
for i in range(k):
output.append(value[i][0])
return output
one line!
class Solution:
def topKFrequent(self, nums: List[int], k: int) -> List[int]:
return [x[0] for x in collections.Counter(nums).most_common(k)]
댓글