Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gp187/algos-ts
Super fast algorithms for typescript
https://github.com/gp187/algos-ts
algorithms binarysearch mergesort quicksort typescript
Last synced: about 2 months ago
JSON representation
Super fast algorithms for typescript
- Host: GitHub
- URL: https://github.com/gp187/algos-ts
- Owner: gp187
- License: mit
- Created: 2017-07-30T10:27:05.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-09-05T21:50:02.000Z (over 7 years ago)
- Last Synced: 2024-11-10T02:14:16.620Z (2 months ago)
- Topics: algorithms, binarysearch, mergesort, quicksort, typescript
- Language: TypeScript
- Homepage: https://www.npmjs.com/package/algos-ts
- Size: 8.79 KB
- Stars: 49
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Algorithms
# Install
```
npm install algos-ts
```# WIP
** this is a work in progress. Stuff will change, but you can already use it and chat with me **## Use
_import the function you need and use it. that's it!_```
import {bubbleSort, quickSort, insertionSort, mergeSort, binarySearch} from 'algos-ts';const mergeSorted = mergeSort([1,6,123,456,123,43]);
```_Made with :heart: in London_