1.0.1 • Published 2 years ago

sudoku-ts v1.0.1

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

Overview

A typescript implementation of a Sudoku puzzle solving algorithm. To solve any given puzzle, first represent its initial values as an array of numbers. Then, creting a Board object and calling the solve() function returns a solved board. The Board class provides an asString function which returns the Board's values as a string. The algorithm used to solve the puzzle is a backtracking algorithm