Skip to content

This is a sudoku solver. which includes a graphical user interface.

License

Notifications You must be signed in to change notification settings

mammaddrik/garns

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

53 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation


Garns logo
Garns

Sudoku Solver & Sudoku Game

Garns demo

Contents

Features
Installation
Usage
License


This is a sudoku solver using the backtracking algorithm. It includes a GUI as well.

What is the backtracking algorithm? Here

Features

  • Can Extract & Solve Sudoku from a file.
  • Sudoku can be entered manually.

Installation

Note: Garns isn't compatible with python2, run it with python3 instead.
I suggest you definitely use cmder.

git clone https://github.com/mammaddrik/garns.git
cd garns
pyrhon pip install -r requirements.txt
python garns.py

Note: You may encounter an error while installing this requirements. If an error occurs, use the following command:

python -m pip install --upgrade pip
pyrhon pip install -r requirements.txt

Usage

After installing the script, you can choose two options from the script:

  1. It is for Solving sudoku as a file:

    Note: To Solving, you must use a text file.

    garns-1.png

    Sudoku txt file:

    sudokutxt.png

  2. It is for Solve Sudoku Manually:

    garns-2.png

License

garns is licensed under MIT License.

back to top