multidoku constraints gui
Some checks are pending
Linux arm64 / Build (push) Waiting to run

This commit is contained in:
2025-01-28 09:20:48 +01:00
parent 182f79d4b4
commit c7d3430d21
3 changed files with 22 additions and 16 deletions

View File

@@ -12,7 +12,7 @@ import sudoku.constraint.LineConstraint;
public class SudokuFactory {
private static List<IConstraint> DEFAULT_CONSTRAINTS = Arrays.asList(new BlockConstraint(), new LineConstraint(), new ColumnConstraint());
public static List<IConstraint> DEFAULT_CONSTRAINTS = Arrays.asList(new BlockConstraint(), new LineConstraint(), new ColumnConstraint());
private static List<Cell> initCells(int size) {
List<Cell> cells = new ArrayList<>(size * size);