Skip to content

Commit 86196e0

Browse files
author
m0a07xh
committedMay 16, 2021
sudoku file updated
1 parent 7a9ddac commit 86196e0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎problemsolving/Sudoku.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
import java.util.HashMap;
44
import java.util.Map;
55

6+
import util.MapUtil;
7+
68
// 10 X 10
79

810
// [ B C V B D ……..T
@@ -69,8 +71,6 @@ public static void main(String[] args) {
6971
for (int j = 0; j < 3; j++)
7072
findWords(matrix, map, minStrLength, maxStrLength, "", i, j, 3, 3);
7173

72-
for (Map.Entry<String, Integer> entry : map.entrySet())
73-
System.out.println(entry.getKey() + " " + entry.getValue());
74+
MapUtil.printMap(map);
7475
}
75-
7676
}

0 commit comments

Comments
 (0)
Please sign in to comment.