vérifentrer

This commit is contained in:
Adrien DICK 2024-04-30 15:25:33 +02:00
parent 0d4e5591d7
commit ba5511c7ba
2 changed files with 7 additions and 0 deletions

Binary file not shown.

View File

@ -62,6 +62,11 @@ public class SaisieGrille extends JPanel {
}
public boolean validerChiffre(int ligne, int colonne, int chiffre) {
// Vérifier si le chiffre est entre 1 et 9
if (chiffre < 1 || chiffre > 9) {
return false;
}
// Vérifier la ligne
for (int j = 0; j < grille.length; j++) {
if (grille[ligne][j] == chiffre && j != colonne) {
@ -95,4 +100,6 @@ public class SaisieGrille extends JPanel {
super.paintComponent(g);
GrillePainter.dessinerGrille(g, this);
}
}