vérifentrer
This commit is contained in:
parent
0d4e5591d7
commit
ba5511c7ba
Binary file not shown.
@ -62,6 +62,11 @@ public class SaisieGrille extends JPanel {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public boolean validerChiffre(int ligne, int colonne, int chiffre) {
|
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
|
// Vérifier la ligne
|
||||||
for (int j = 0; j < grille.length; j++) {
|
for (int j = 0; j < grille.length; j++) {
|
||||||
if (grille[ligne][j] == chiffre && j != colonne) {
|
if (grille[ligne][j] == chiffre && j != colonne) {
|
||||||
@ -95,4 +100,6 @@ public class SaisieGrille extends JPanel {
|
|||||||
super.paintComponent(g);
|
super.paintComponent(g);
|
||||||
GrillePainter.dessinerGrille(g, this);
|
GrillePainter.dessinerGrille(g, this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user