Skip to content

florian-3ap/sudoku-solver

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Sudoku Solver

Input data

The input file structure is based on this API: http://www.cs.utep.edu/cheon/ws/sudoku/ (NEW)

Description

Field Type Description
size Integer Size of requested/created puzzle, e.g., 8 for 8x8 puzzle
squares Array Numbers filled in the puzzle along with their 0-based column (x) and row (y) indexes, e.g., {"x": 2, "y": 3, "value": 5}

Example File

{
	"size": "4",
	"squares": [
            {
            	"x": 0,
            	"y": 3,
            	"value": 4
            },
            {
            	"x": 1,
            	"y": 1,
            	"value": 3
            }
	]
}

Import Sequence

Import Sudoku

Solve Sequence

Solve Sudoku

About

No description or website provided.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published