Write a method called mostCommonNames that accepts a Scanner representing an input file with names on each line separated by spaces. Some names appear multiple times in a row on the same line. For each line, print the most commonly occurring name. If there’s a tie, use the first name that had that many occurrences; if all names are unique, print the first name on the line. For example, if the file has this input:
![]()
For the input above, your method should produce the following output:
Most common: KimMost common: Jamie
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.