ç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

@@ -2,7 +2,6 @@ package sudoku;
import sudoku.constraint.IConstraint;
import javax.swing.*;
import java.util.ArrayList;
import java.util.List;
@@ -49,4 +48,17 @@ public class Sudoku {
}
return mutableCells;
}
// only used by the serializer
public List<Block> getBlocks() {
return blocks;
}
public List<Cell> getCells() {
return cells;
}
}