https://github.com/mlziade/sudoku-it
https://github.com/mlziade/sudoku-it
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mlziade/sudoku-it
- Owner: mlziade
- Created: 2025-07-25T03:32:20.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2025-07-25T03:39:40.000Z (6 months ago)
- Last Synced: 2025-07-25T08:39:04.086Z (6 months ago)
- Language: Python
- Size: 2.93 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# sudoku it
A Python implementation of a Sudoku solver using backtracking algorithm.
## How it works
The program creates a 9x9 Sudoku grid, places one random number as a seed, then uses backtracking to solve the complete puzzle following standard Sudoku rules:
- Each row must contain digits 1-9 without repetition
- Each column must contain digits 1-9 without repetition
- Each 3x3 box must contain digits 1-9 without repetition
## Usage
```bash
python main.py
```
The program will display the initial grid with the random seed, then show the solved puzzle.