Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lucascompython/sudoku
Sudoku Solver for sudoku.com
https://github.com/lucascompython/sudoku
ocr sudoku sudoku-solver
Last synced: about 1 month ago
JSON representation
Sudoku Solver for sudoku.com
- Host: GitHub
- URL: https://github.com/lucascompython/sudoku
- Owner: lucascompython
- License: gpl-3.0
- Created: 2024-03-21T20:31:37.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-03-22T23:34:00.000Z (9 months ago)
- Last Synced: 2024-03-23T21:42:51.034Z (9 months ago)
- Topics: ocr, sudoku, sudoku-solver
- Language: Python
- Homepage:
- Size: 10.5 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sudoku Solver for [sudoku.com](https://sudoku.com)
## Demo
https://github.com/lucascompython/sudoku/assets/77930083/b4e65368-754c-40fc-a2dd-c6a430e421e1
## How does it work?
1. Take a screenshot of the sudoku board
2. Find the sudoku board in the screenshot
3. Extract the numbers from the board
4. Solve the sudoku
5. Type the solution into the board## Build
```bash
git clone https://github.com/lucascompython/sudoku
cd sudoku# Install uv https://github.com/astral-sh/uv
# Create and activate a virtual environment
uv venvsource .venv/bin/activate
# Or
.\.venv\Scripts\Activate.ps1# Install dependencies
uv pip sync requirements.txt# Run
./develop.sh
# Or
./develop.ps1# Adjust the screen capture area if needed
```