Skip to content

Commit b3d3720

Browse files
authored
한글화
1 parent a54460d commit b3d3720

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/effectivejava/chapter7/item45/anagrams/IterativeAnagrams.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import java.io.IOException;
55
import java.util.*;
66

7-
// Prints all large anagram groups in a dictionary iteratively (Page 204)
7+
// 코드 45-1 사전 하나를 훑어 원소 수가 많은 아나그램 그룹들을 출력한다. (269-270쪽)
88
public class IterativeAnagrams {
99
public static void main(String[] args) throws IOException {
1010
File dictionary = new File(args[0]);

0 commit comments

Comments
 (0)