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

Method main

java/Chapter 17/Question17_2/Question.java:23–31  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

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}

Callers

nothing calls this directly

Calls 1

convertBoardToIntMethod · 0.95

Tested by

no test coverage detected