Prints out the puzzle.
(String solution)
| 126 | */ |
| 127 | |
| 128 | private static void print (String solution) |
| 129 | { System.out.print(solution.replaceAll("(\\d{5})(\\d{5})","$1 $2") |
| 130 | .replaceAll("(\\d{5})","$1\n") |
| 131 | .replaceAll("(\\d)","$1 ")); |
| 132 | } |
| 133 | |
| 134 | // CONSTRUCTORS |
| 135 |
no test coverage detected