(String[] args)
| 30 | } |
| 31 | |
| 32 | public static void main(String[] args) { |
| 33 | String[] wordlist = AssortedMethods.getLongTextBlobAsStringList(); |
| 34 | Hashtable<String, Integer> dictionary = setupDictionary(wordlist); |
| 35 | |
| 36 | String[] words = {"the", "Lara", "and", "outcropping", "career", "it"}; |
| 37 | for (String word : words) { |
| 38 | System.out.println(word + ": " + getFrequency(dictionary, word)); |
| 39 | } |
| 40 | } |
| 41 | |
| 42 | } |
nothing calls this directly
no test coverage detected