This was created during my time as a student at Code Chrysalis.
Meetup Slides: https://goo.gl/NV5pDZ
- Create a sortingAlgo project folder and go to it by typing the following in your terminal
mkdir sortingAlgo
cd sortingAlgo
- Clone the following repo by typing the following in your terminal
git clone https://github.com/alpenfritz/meetup-sort-algos.git
- Create an account at https://codeanywhere.com
- Click File > New Connection > Git from URL
- Paste in
https://github.com/alpenfritz/meetup-sort-algos.git - Specify a name
- Select
Node.js(Ubuntu 14.04) for your stack - Click Create
- Implement
practiceInsertionSort.jsin the practice folder - To run your code, type in your console:
npm run practiceInsertion - (Optional) Implement
practiceQuickSort.jsin the practice folder (you need recursion) - To run your code, type in your console:
npm run practiceQuick