MCPcopy Index your code
hub / github.com/careercup/ctci / main

Method main

java/Chapter 9/Question9_9/Question.java:87–94  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

85 }
86
87 public static void main(String[] args) {
88 ArrayList<Integer[]> results = new ArrayList<Integer[]>();
89 Integer[] columns = new Integer[GRID_SIZE];
90 clear(columns);
91 placeQueens(0, columns, results);
92 printBoards(results);
93 System.out.println(results.size());
94 }
95}

Callers

nothing calls this directly

Calls 4

clearMethod · 0.95
placeQueensMethod · 0.95
printBoardsMethod · 0.95
sizeMethod · 0.45

Tested by

no test coverage detected