feat: multidoku rendu seems to work

This commit is contained in:
2025-02-07 10:19:42 +01:00
parent 7e068d0910
commit 1c1da09e1f
4 changed files with 228 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
package sudoku;
public class SudokuPlacement {
private Sudoku sudoku;
private int offsetLigne;
private int offsetColonne;
public SudokuPlacement(Sudoku sudoku, int offsetLigne, int offsetColonne) {
this.sudoku = sudoku;
this.offsetLigne = offsetLigne;
this.offsetColonne = offsetColonne;
}
public Sudoku getSudoku() {
return sudoku;
}
public int getOffsetLigne() {
return offsetLigne;
}
public int getOffsetColonne() {
return offsetColonne;
}
}