Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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 venv

source .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
```