feat : generation de doku par rapport à une difficulté
Some checks are pending
Linux arm64 / Build (push) Waiting to run

This commit is contained in:
Melvyn
2025-01-27 16:17:22 +01:00
parent 584a1c8b42
commit 4c02be3d39
5 changed files with 92 additions and 7 deletions

View File

@@ -77,4 +77,10 @@ public class Cell {
public boolean isMutable() {
return this.isMutable;
}
public int empty() {
int oldSymbol = this.symbolIndex;
this.symbolIndex = Cell.NOSYMBOL;
return oldSymbol;
}
}