Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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_