feat : Solver.solve()

This commit is contained in:
Melvyn
2025-01-23 16:28:41 +01:00
parent e19a9c7b27
commit fc7ae02387
5 changed files with 80 additions and 9 deletions

View File

@@ -72,6 +72,10 @@ public abstract class Cell {
}
*/
public boolean isEmpty() {
return this.symbolIndex == Cell.NOSYMBOL;
}
public boolean equalsValue(Cell otherCell) {
return otherCell.getSymbolIndex() == this.getSymbolIndex();
}