Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 1.02 KB

File metadata and controls

25 lines (16 loc) · 1.02 KB

Algorithms & Data Structures in JavaScript.

This repository has been made while learning from this tutorial by Stephen Grider.

That being said, I am planning to update this project with some more questions by learning from this tutorial by Colt Steele.

Where are Questions and their respective Answers? What about Tests?

  • Question: All folders have specific README.md where respective question has been asked.
  • Answers: All folders have specific index.js where respective answer has been solved.
  • Tests: All folders have specific test.js which contains respective test file. Use Jest for same as mentioned below.

Test with Jest

Step1: Install Jest

npm install -g jest

Step2: Run Jest into the targeted test such as

jest 007-anagrams/test.js --watch