(String[] args)
| 85 | } |
| 86 | |
| 87 | public static void main(String[] args) { |
| 88 | ArrayList<Integer[]> results = new ArrayList<Integer[]>(); |
| 89 | Integer[] columns = new Integer[GRID_SIZE]; |
| 90 | clear(columns); |
| 91 | placeQueens(0, columns, results); |
| 92 | printBoards(results); |
| 93 | System.out.println(results.size()); |
| 94 | } |
| 95 | } |
nothing calls this directly
no test coverage detected