Files
Sudoku/app/src/main/java/sudoku/solver/SolverStep.java
2025-02-01 22:54:02 +01:00

24 lines
332 B
Java

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;
}
}