Find Maximum Repeating Element and Maximum Occurrence in Array
Given an array of sizen, the array contains numbers in range from 0 to k-1 wherekis a positive integer and k <= n.
Find the maximum repeating number in this array.
For example:
Input arr = [1,3,4,5,6,7,4]
Maximum occurence element = 4
Maximum occurence = 2