feat: add history

This commit is contained in:
2025-02-01 22:54:02 +01:00
parent 3e30332245
commit 78bdefebe5
6 changed files with 54 additions and 15 deletions

View File

@@ -0,0 +1,23 @@
package sudoku.solver;
import sudoku.structure.Cell;
public class SolverStep {
private final Cell cell;
private final int newValue;
public SolverStep(Cell cell) {
this.cell = cell;
this.newValue = cell.getSymbolIndex();
}
public int getNewValue() {
return newValue;
}
public Cell getCell() {
return cell;
}
}