0
/ 1.0
Problem Description
Write a method mostFrequentWord
that receives an array of strings and returns the word that appears most frequently.
Write a method mostFrequentWord
that receives an array of strings and returns the word that appears most frequently.
Method Signature:
public String mostFrequentWord(String[] words)
You must use a HashMap to:
Your feedback will appear here when you check your answer.