Top k frequent elements
Given an integer array nums and an integer k, return the k most frequent elements. You may return the answer in any order.
When dealing with top k, we would like to think about a priority queue.
But first we need to figure out how to keep track of a...
simonpyjavaplus.hashnode.dev2 min read