| 7 | enum Piece { Empty, Red, Blue }; |
| 8 | |
| 9 | public enum Check { |
| 10 | Row, |
| 11 | Column, |
| 12 | Diagonal, |
| 13 | ReverseDiagonal |
| 14 | } |
| 15 | |
| 16 | public static Piece getIthColor(Piece[][] board, int index, int var, Check check) { |
| 17 | int N = board.length; |
nothing calls this directly
no outgoing calls
no test coverage detected