Sudoku Made using pygame and python.
Find a file
2020-08-12 13:16:02 +01:00
.vscode Add launch.json 2020-02-09 16:06:21 +00:00
.gitattributes Initial commit 2020-02-08 17:06:58 +00:00
.gitignore Add gitignore 2020-03-07 00:06:35 +00:00
generator.py Apply autopep 2020-05-30 23:31:41 +01:00
puzzles.json Update puzzle generator 2020-05-28 16:54:44 +01:00
README.md Update README.md 2020-08-12 13:16:02 +01:00
solver.py Apply autopep 2020-05-30 23:31:41 +01:00
sudoku.py Apply autopep 2020-05-30 23:31:41 +01:00

Sudoku

Sudoku Made using pygame and python.

Includes a backtracking based Sudoku solver

Requirements

  • Python 3.7 or higher.
  • Pygame, install using:
pip install pygame

Usage

  • The script can be run by executing:
python sudoku.py
  • It also includes a puzzle generator which can be executed using:
python generator.py

Controls

  • Arrow keys, WASD or mouse can be used to move tile selection.
  • A number can be pressed to update the selected tile.
  • Press enter to start the backtracking solver on the current board.