Twaha-Rahman / data-structures-and-algos

A repo for the Data Structures and Algorithms that I've learned/solved

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

WIP

The repo is not exhaustive and still has a lot of things to add.

Purpose of the repo

To store the solutions to all the problems I've solved so far.

Steps to run the code

Inside all the folders the main.ts file is the main file that is intended to be run. I use Deno to run my code. Just install Deno and run the main.ts file inside any one of the folders. For example:

deno run BinaryTree/main.ts

To watch for changes and reload when you change any of the files, you'll have to run deno run with the --watch flag. For example:

deno run --watch BinaryTree/main.ts

#Run the tests

To run the tests, simply run the following command:

deno test

About

A repo for the Data Structures and Algorithms that I've learned/solved


Languages

Language:TypeScript 100.0%