1.0.0 • Published 5 years ago

@itsrainingmani/yass v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
5 years ago

yass

Yet Another Sudoku Solver

Description

YASS is a pure TypeScript implementation of Peter Norvig's Sudoku Solver with no additional dependencies. The purpose of writing this program was to learn how to create an efficient sudoku solver that can handle a variety of puzzles using Depth-First Search and Constraint Propagation while learning the TypeScript language.

Usage

To install the package, run the following command

npm install yass

You can use it in your project by importing that package (CommonJS and ES Modules supported) and creating a new instance of the Solver class.

Usage Example

References