1 parent a54460d commit b3d3720Copy full SHA for b3d3720
1 file changed
src/effectivejava/chapter7/item45/anagrams/IterativeAnagrams.java
@@ -4,7 +4,7 @@
4
import java.io.IOException;
5
import java.util.*;
6
7
-// Prints all large anagram groups in a dictionary iteratively (Page 204)
+// 코드 45-1 사전 하나를 훑어 원소 수가 많은 아나그램 그룹들을 출력한다. (269-270쪽)
8
public class IterativeAnagrams {
9
public static void main(String[] args) throws IOException {
10
File dictionary = new File(args[0]);
0 commit comments