Skip to content

Instantly share code, notes, and snippets.

View jmrchelani's full-sized avatar
👋
Sup

Milton jmrchelani

👋
Sup
View GitHub Profile
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,