Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 926 Bytes

README.md

File metadata and controls

16 lines (10 loc) · 926 Bytes

freeCodeCamp - Quality Assurance 4: Sudoku Solver

About :

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.

Run on Repl.it

Testing and additional notes

  • To run the tests on Repl.it, just run npm start. If local, type npm run watch or npm 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 and tests/2_functional-tests.js.