Sudoku Solver

Le solve a pour but de resoudre le sudoku, comme son nom l’indique. Liste des fonctions : void print(int grid[N][N]) : Input : grid [N][N] Describtion : print the fonction int check_move(int grid[N][N], int row, int col, int n) Input : grid[N][N], row and col for the new int n Output : 0 if pb else 1 Description : test if a int can be placed at the pos [row][col] int solve(int grid[N][N], int row, int col)...

September 25, 2022