(Integer[] columns)
| 46 | } |
| 47 | |
| 48 | public static void clear(Integer[] columns) { |
| 49 | for (int i = 0; i < GRID_SIZE; i++) { |
| 50 | columns[i] = -1; |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | public static void printBoard(Integer[] columns) { |
| 55 | drawLine(); |
no outgoing calls
no test coverage detected