Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/ibz-04/sudoku-solver
- Owner: iBz-04
- Created: 2024-04-15T16:24:58.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-04-15T16:31:23.000Z (10 months ago)
- Last Synced: 2024-12-13T14:18:42.555Z (2 months ago)
- Topics: algorithm-challenges, data-structures, sudoku-solver
- Language: Python
- Homepage:
- Size: 5.86 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sudoku-Solver
This code solves the famous sudoku gameA 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.