Squashed commit of the following:
commit 1791846882ffc30b5fb052b1619093a5a74a409c Author: ROGER <gwendal.roger@etu.univ-lyon1.fr> Date: Mon Feb 3 10:23:53 2025 +0100 03/02/2025 : Ajout d'un mecanisme pour la création de bloc mannuels commit 39892a169561e4827a9e14fdb52cdf870ef30013 Author: ROGER <gwendal.roger@etu.univ-lyon1.fr> Date: Mon Feb 3 10:21:06 2025 +0100 03/02/2025 : Ajout d'un mecanisme pour la création de bloc mannuels commit ec5101a213c6a5fc24997eab3375def7595a637a Author: ROGER <gwendal.roger@etu.univ-lyon1.fr> Date: Thu Jan 30 10:57:46 2025 +0100 30/01/2025 : Ajout d'un menu utilisateur + ajout de système de vérification des saisies commit 8d77fd725f65ba946c46b344186aa56d53448b1a Author: ROGER <gwendal.roger@etu.univ-lyon1.fr> Date: Mon Jan 20 13:01:12 2025 +0100 20/01/2025 : Ajout de test + création d'un menu utilisateur commit af2dcfe2c46eefa0e49e3bf88ea51327690c660d Author: Morph01 <thibaut6969delastreet@gmail.com> Date: Mon Jan 20 12:57:32 2025 +0100 Squashed commit of the following: commit3586ae4c15Author: Morph01 <thibaut6969delastreet@gmail.com> Date: Mon Jan 20 12:53:23 2025 +0100 Squashed commit of the following: commit862ff6e08dAuthor: Morph01 <thibaut6969delastreet@gmail.com> Date: Mon Jan 20 12:49:38 2025 +0100 feat: affichage de la grille colorée et vérification de tt les contraintes commitb1dde68ec1Author: Morph01 <thibaut6969delastreet@gmail.com> Date: Sun Jan 5 11:16:34 2025 +0100 feat: add constraint management and validation to Sudoku class commitd8486a3bd7Author: Morph01 <thibaut6969delastreet@gmail.com> Date: Sun Jan 5 11:13:19 2025 +0100 feat: implement constraint classes for Sudoku (row, column, block) commit8945072074Author: Morph01 <thibaut6969delastreet@gmail.com> Date: Sun Jan 5 11:12:59 2025 +0100 refactor: rename methods to French for consistency in the Sudoku application commite35123e9feAuthor: Morph01 <thibaut6969delastreet@gmail.com> Date: Sun Jan 5 11:11:40 2025 +0100 fix: update build.gradle to use testRuntimeOnly for JUnit Jupiter engine commit22e88a899fAuthor: Morph01 <thibaut6969delastreet@gmail.com> Date: Sat Jan 4 15:56:23 2025 +0000 Gwendal in main : add test on futur constraints and enhance input symbol method (#1) Co-authored-by: ROGER <gwendal.roger@etu.univ-lyon1.fr> Reviewed-on: #1 commit3e6aa821fcAuthor: Morph01 <thibaut6969delastreet@gmail.com> Date: Sat Jan 4 16:51:12 2025 +0100 feat: enhance symbol input validation and improve console messaging commit7c4fa8cbe8Author: Morph01 <thibaut6969delastreet@gmail.com> Date: Sat Jan 4 16:49:41 2025 +0100 chore: update Gradle wrapper to version 8.3 commitc226eeebaeAuthor: ROGER <gwendal.roger@etu.univ-lyon1.fr> Date: Fri Jan 3 22:58:54 2025 +0100 03/01/2025 : Intégration d'un mécanisme permettant de contrôler que le symbole choisi ne figure pas déjà dans la liste de symboles possibles. Permet d'éviter les doublons commitb553fd2be9Author: ROGER <gwendal.roger@etu.univ-lyon1.fr> Date: Fri Jan 3 17:12:10 2025 +0100 03/01/2025 : Création d'un second sudoku avec intégration automatique des symboles commita1b130b968Author: ROGER <gwendal.roger@etu.univ-lyon1.fr> Date: Fri Jan 3 16:35:02 2025 +0100 03/01/2025 : Ajout des tests lignes, colonne et bloc commit7c29041ca4Author: ROGER <gwendal.roger@etu.univ-lyon1.fr> Date: Thu Dec 26 20:27:49 2024 +0100 Création de branche / 1er COMMIT de test
This commit is contained in:
@@ -1,8 +1,5 @@
|
||||
package sudoku;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
|
||||
public class App {
|
||||
public String getGreeting() {
|
||||
return "Hello World!";
|
||||
@@ -10,7 +7,7 @@ public class App {
|
||||
|
||||
public static void main(String[] args) {
|
||||
System.out.println(new App().getGreeting());
|
||||
|
||||
/*
|
||||
// Create a new Sudoku
|
||||
Sudoku sudoku = new Sudoku(9);
|
||||
sudoku.getGrille().setSymbolesPossibles(new ArrayList<>(Arrays.asList(
|
||||
@@ -49,9 +46,16 @@ public class App {
|
||||
System.out.println("Création d'un second SUDOKU");
|
||||
|
||||
Sudoku sudoku2 = new Sudoku(9);
|
||||
sudoku2.getGrille().askSetSymbolesPossibles();
|
||||
/*sudoku2.getGrille().askSetSymbolesPossibles();
|
||||
|
||||
System.out.println("Symboles possibles :");
|
||||
sudoku2.getGrille().printSymbolesPossibles();
|
||||
sudoku2.getGrille().printSymbolesPossibles();*/
|
||||
|
||||
try{
|
||||
Sudoku.menuGrille();
|
||||
} catch (Exception e){
|
||||
System.err.println("Une erreur fatale est survenue : " + e.getMessage());
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user