Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ibz-04/sudoku-solver

Solving the sudoku arithmetic game with python algorithms
https://github.com/ibz-04/sudoku-solver

algorithm-challenges data-structures sudoku-solver

Last synced: 5 days ago
JSON representation

Solving the sudoku arithmetic game with python algorithms

Awesome Lists containing this project

README

        

# Sudoku-Solver
This code solves the famous sudoku game

A sudoku solution must satisfy all of the following rules:

NB:
Each of the digits 1-9 must occur exactly once in each row.
Each of the digits 1-9 must occur exactly once in each column.
Each of the digits 1-9 must occur exactly once in each of the 9 3x3 sub-boxes of the grid.
The '.' character indicates empty cells.

Constraints:

board.length == 9
board[i].length == 9
board[i][j] is a digit or '.'.
It is guaranteed that the input board has only one solution.