https://github.com/drewcook/js-dsa
Code from the Udemy course JavaScript Algorithms and Data Structures Masterclass by Colt Steele.
https://github.com/drewcook/js-dsa
algorithms data-structures data-structures-and-algorithms javascript typescript
Last synced: about 1 month ago
JSON representation
Code from the Udemy course JavaScript Algorithms and Data Structures Masterclass by Colt Steele.
- Host: GitHub
- URL: https://github.com/drewcook/js-dsa
- Owner: drewcook
- Created: 2021-07-06T23:43:49.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-03-24T00:05:05.000Z (about 4 years ago)
- Last Synced: 2024-12-31T02:34:30.780Z (about 1 year ago)
- Topics: algorithms, data-structures, data-structures-and-algorithms, javascript, typescript
- Language: JavaScript
- Homepage: https://www.udemy.com/course/js-algorithms-and-data-structures-masterclass/
- Size: 7.91 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JavaScript Algorithms and Data Structures Masterclass
This repository holds the code for the Udemy course found [here](https://www.udemy.com/course/js-algorithms-and-data-structures-masterclass/).
## Running files
The project uses `nodemon` to run files with an `npm start` command. To run a file, use `-- [filepath]` with the `npm start` command. For example:
```bash
npm start -- ./index.js
or
npm start -- ./snippets/add1_timing.js
```