Javadoc Sudoku

This commit is contained in:
2024-05-05 00:41:39 +02:00
parent aecb28232e
commit 508b423def
5 changed files with 133 additions and 15 deletions

View File

@@ -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));
}