Skip to content

playground to practice data structures and algorithms with typescript

Notifications You must be signed in to change notification settings

Kathalysth/dsa-playground

Repository files navigation

Data Structures and Algorithm Playground

This repo is a 😋playground to implement data structures and algorithms 👩🏻‍💻 using typescript.

Getting Started

  • Run this command:
 git clone https://github.com/Kathalysth/dsa-playground.git
  • run npm install Note that this project assumes you have typescript installed globally
  • if you don't have Typescript installed globally, run this command:
 npm install -g typescript
  • create a main.ts file on your root dir.

  • run npm run dev to watch for changes to the main.ts file

  • create your feature branch from the dev branch:

 git checkout -b your_branch dev
  • the branch naming convention is username/learning_path/sub_path eg:
 git checkout -b kathalysth/data-structure/linkedlist dev

There you have it 🥳, play around with implementing any data structure or algorithms 🧑🏻‍🚀.

Some useful linked to learning about data structures and algorithms