- Suduko is the game where we are give the grid of either 44, 99 and many more this one is specially focused on the 9*9 grid type.
- A completely solved sudoku contains the all the numbers from 1 to 9 one time each in the row and column, repetition is not allowed.
- Also the each 3*3 grid contains all the numbers from 1 to 9
- The sudoku is the problem of the backtracking which involves the usage of recursion.
- Backtracking involves the exploring all the paths and finding the possible feasible solution if exist.
- The algorithm is written in the
script.js
file.
This project is licensed under the MIT License.