Solution: Top K Frequent Elements
Let's solve the Top K Frequent Elements problem using the Top K Elements pattern.
Statement
Given an array of integers, arr, and an integer, k, return the most frequent elements.
Note: You can return the answer in any order.
Constraints:
-
arr.length -
arr[i]