ça part
All checks were successful
Linux arm64 / Build (push) Successful in 25s

This commit is contained in:
2025-01-21 17:13:46 +01:00
parent ed1dc0e742
commit 64a2dca1b0
9 changed files with 256 additions and 16 deletions

View File

@@ -4,6 +4,7 @@
package sudoku;
import sudoku.io.SudokuPrinter;
import sudoku.io.SudokuSerializer;
public class Main {
public String getGreeting() {
@@ -12,9 +13,5 @@ public class Main {
public static void main(String[] args) {
System.out.println(new Main().getGreeting());
int blockWidth = 3;
int blockHeight = 3;
var sudoku = SudokuFactory.createBasicEmptyRectangleSudoku(blockWidth, blockHeight);
SudokuPrinter.printRectangleSudoku(sudoku.getSubGrid(0), blockWidth , blockHeight);
}
}