(ArrayList<Integer[]> boards)
| 78 | |
| 79 | |
| 80 | public static void printBoards(ArrayList<Integer[]> boards) { |
| 81 | for (int i = 0; i < boards.size(); i++) { |
| 82 | Integer[] board = boards.get(i); |
| 83 | printBoard(board); |
| 84 | } |
| 85 | } |
| 86 | |
| 87 | public static void main(String[] args) { |
| 88 | ArrayList<Integer[]> results = new ArrayList<Integer[]>(); |
no test coverage detected