For 'arr' = [ 1, 2, 3, 1, 2]. you need to return 1.
The first line contains an integer 'T' which denotes the number of test cases or queries to be run.
The first line of each test case contains a single integer ‘N’ denoting the size of the array.
The second line of each test case contains ‘N’ space-separated integers denoting the elements of the array.
For each case, we need to print an integer that has the maximum frequency.
The output of each test case will be printed in a separate line.
You do not need to input or print anything, and it has already been taken care of. Just implement the given function.
1 <= T <= 5
1 <= N <= 10000
-10 ^ 3 <= |arr| <= 10 ^ 3
Time Limit: 1 sec
Here, we can simply run two loops. The outer loop picks all elements one by one and the inner loop finds the frequency of the picked element and compares it with the maximum present so far.
We can use hashing and count the frequency of all the elements and simultaneously find the maximum frequency. Now we can iterate through the array and find the first element with the maximum frequency and return that element.
Sort an Array According to the Relative Order of Another Array
The Food Inspector
LRU Cache
Longest Subarray With Zero Sum
Maximum GCD