This repository stores any code related to my studies about algorithms and data structures. It is currently using bun
for testing and runtime. The folder structure is really flexible and I'm probably going to be moving things around. My idea for this repository is to:
- Create an example implementation for the algorithm or data structure.
- Create a unit test to... test it.
- Maybe in the future I include my markdown notes for each concept present in this repository.
Really simple:
<topic>/
<concept>.ts
<concept>.test.ts
Installing dependencies:
bun install
To run the tests:
bun test
This project was created using bun init
in bun v1.1.20. Bun is a fast all-in-one JavaScript runtime.