Javadoc Sudoku
This commit is contained in:
@@ -92,6 +92,7 @@ public class SudokuCreator extends SudokuUI {
|
||||
Grid grid = sudoku.getGrid();
|
||||
for (int row = 0; row < 9; row++) {
|
||||
for (int col = 0; col < 9; col++) {
|
||||
if()
|
||||
int value = grid.getCell(row, col).getValue();
|
||||
buttons[row][col].setText(value == 0 ? "" : String.valueOf(value));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user