본문 바로가기

Leetcode 100문제 도전

[Leetcode 22/100] Top K Frequent Elements - Medium

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

문제 풀이 방식

클래스를 새로 만들고 정렬 기준을 변경하여 풀이

주의할 점

IDE 없이 코딩 할 때 compareTo 매서드의 인자를 어떻게 해야하는지 기억이 안났다.. 더 상세하게 기억하자

이 문제에서는 내 풀이 말고 다른 방식으로 힙과 같은 자료구조 풀이를 요구하는 것 같은데 discuss를 한번 봐봐야겠다.

소스코드