Simple Sudoku solver App using NodeJS
This basic sudoku solver example shows basic usage of the backtracking algorithm to solve the puzzle
To install and run the example, first clone the repository and optionally replace the "sudokusolver" directory with your desired name.
git clone https://github.com/greatdane89/nodejs-sudoku-solver.git sudokusolver#Navigate into proper directory
cd sudokusolver
#install dependencies
npm install
#Run the application
npm run start