(String[] args)
| 21 | } |
| 22 | |
| 23 | public static void main(String[] args) { |
| 24 | char[][] board = { |
| 25 | {'x', 'x', 'o'}, |
| 26 | {' ', 'x', ' '}, |
| 27 | {' ', ' ', 'x'}}; |
| 28 | |
| 29 | int v = convertBoardToInt(board); |
| 30 | System.out.println(v); |
| 31 | } |
| 32 | |
| 33 | } |
nothing calls this directly
no test coverage detected