This repo is an open source collection and playground of algorithms, data structures and related documentation to brush up your knowledge of computer science fundamentals, or learn it from scratch.
Install all dependencies
npm install
To play around with the data structures and algorithms and create your own stuff, run TS in watch mode in order to get incremental compilation errors while you code
npm run dev
You can run a TypeScript module directly with ts-node
npm start <path/to/the/file.ts>
You can also write tests and run the entire suite once
npm run test
or run it in watch mode
npm run test:watch