This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
static void solver(BoggleBoard board) { | |
for (int i = 0; i < board.getRows(); i++) { | |
for (int j = 0; j < board.getColumns(); j++) { | |
solver(board, board.getCharAt(i,j) + "", i, j); | |
} | |
} | |
} | |
static private void solver( | |
BoggleBoard board, |