Complete the method findMostFrequent that takes an array containing ints in the range 0
through 99 (inclusive) and returns the value that occurs the most in the array. If there is a tie
for the most frequent value, return the largest of the tied values.
If the passed array is null or empty, throw an `IllegalArgumentException`.
Stuck? You may find these lessons helpful: