merge
All checks were successful
Linux arm64 / Build (push) Successful in 36s

This commit is contained in:
Melvyn
2025-01-29 18:57:00 +01:00
parent 412684e6f0
commit e12955ab4a
3 changed files with 4 additions and 2 deletions

View File

@@ -363,7 +363,7 @@ public class Sudoku {
*/
private boolean isValid() {
for (Cell cell : this.getFilledCells()) {
for (IConstraint constraint : this.constraints) {
for (Constraint constraint : this.constraints) {
try {
Coordinate coords = this.getCoordinateCell(cell);