(String[] args)
| 76 | } |
| 77 | |
| 78 | public static void main(String[] args) { |
| 79 | String[] words = {"maps", "tan", "tree", "apple", "cans", "help", "aped", "free", "apes", "flat", "trap", "fret", "trip", "trie", "frat", "fril"}; |
| 80 | HashSet<String> dict = setupDictionary(words); |
| 81 | LinkedList<String> list = transform("tree", "flat", dict); |
| 82 | for (String word : list) { |
| 83 | System.out.println(word); |
| 84 | } |
| 85 | } |
| 86 | |
| 87 | } |
nothing calls this directly
no test coverage detected