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

Method printBoards

java/Chapter 9/Question9_9/Question.java:80–85  ·  view source on GitHub ↗
(ArrayList<Integer[]> boards)

Source from the content-addressed store, hash-verified

78
79
80 public static void printBoards(ArrayList<Integer[]> boards) {
81 for (int i = 0; i < boards.size(); i++) {
82 Integer[] board = boards.get(i);
83 printBoard(board);
84 }
85 }
86
87 public static void main(String[] args) {
88 ArrayList<Integer[]> results = new ArrayList<Integer[]>();

Callers 1

mainMethod · 0.95

Calls 3

printBoardMethod · 0.95
sizeMethod · 0.45
getMethod · 0.45

Tested by

no test coverage detected