problems

Programming Problems for People

Stars
6

Practice Problems

Folder Structure

  • src

    • All of your code will go in here.
  • test

    • Existing tests for all algorithms are here.

Before Starting

  1. run 'npm install' from the root level.
  2. Write code
  3. Run Tests
  4. Run eslint

Eslint

  • Included, do not modify any rules

How to Test

Run tests

  • npm test

Run tests per problem

Tests all have a mark. So, to only run tests for the towers problem

  • ava -m="*towers*"