Try hisImplement in Linked List, with each node containing a number and its frequency.
Whenever a number is input, it tries to find it if it's in the List.
If so, add its frequency by 1.
If not, add a tail containing the number into the Linked List and set its frequency to 1.
At the end, scan the whole List and try to find out the nodes containing max frequency.
Linear search is expensive