[Leetcode] 347. Top K Frequent Elements
Contents
https://leetcode.com/problems/top-k-frequent-elements/description/
문제 자체는 어렵지 않을 텐데 map(hash table)을 value 값으로 정렬하는데 시간을 많이 잡아먹었다.
go에선 sort interface 사용법을 알았다면 금방 풀수 있었을듯
|
|