/Javascript-DSA

This is the repo for mastering data structures and algorithms

Primary LanguageJavaScript

Javascript-DSA

This is the repo for mastering data structures and algorithms

Data Structures revised

  1. Stacks
  2. Queues
  3. Dequeues

How to pull from forked branch

then: (like "git pull" which is fetch + merge) -->

  • git merge upstream/master master

or, better, replay your local work on top of the fetched branch -->

like a "git pull --rebase" -->

  • git rebase upstream/master