MCPcopy Create free account
hub / github.com/careercup/ctci / Check

Enum Check

java/Chapter 17/Question17_2/QuestionB.java:9–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected