LeetCode: https://leetcode.com/problems/top-k-frequent-elements/
Given an integer array nums and an integer k, return the k most frequent elements.
1
0
1
1
1
2
2
3
2
4
3
5
k=2
Step 1 / 3
Step 1:
Count frequencies, then keep a min-heap of size k by frequency.
Focus: select @ [0, 3, 5]
k=2