https://github.com/wintercore/sorting-algos
https://github.com/wintercore/sorting-algos
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/wintercore/sorting-algos
- Owner: WinterCore
- Created: 2021-01-15T05:51:11.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-01-29T02:10:08.000Z (over 5 years ago)
- Last Synced: 2025-02-14T20:31:35.881Z (over 1 year ago)
- Language: TypeScript
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Sorting Algorithms
Popular sorting algorithms implementations in Typescript.
## Includes
- Bubble sort.
- Heap sort.
- Insertion sort.
- Merge sort.
- Quick sort.
More will be added later.
## How to run locally
- Install [Deno](https://deno.land)
- Clone this repo `git clone https://github.com/WinterCore/sorting-algos.git`
- Change your current working directory to the cloned repo `cd sorting-algos`
- Unlike Node you don't need to run `npm install` cuz Deno is cool 🙂
- To run a specific file `deno run --import-map=import_map.json src/.ts`
- To run the tests use the included script `./run_tests` or run `deno test --unstable --import-map=import_map.json --v8-flags=--stack-size=200000 src/*`