freeCodeCamp - Quality Assurance 4: Sudoku Solver
This web application is an automatic Sudoku Solver using backtracking
as recursive method
It meets all the requirements of the FCC Quality Assurance Projects - Sudoku Solver project.
- To run the tests on Repl.it, just run
npm start
. If local, typenpm run watch
ornpm run test
to run server with nodemon. - To run the tests in the console, use the command npm run test. To open the Repl.it console, press Ctrl+Shift+P (Cmd if on a Mac) and type "open shell".
- All logic contained into
public/sudoku-solver.js
. - All unit/functional tests in
tests/1_unit-tests.js
andtests/2_functional-tests.js
.