algorithmpool
Version:
A pool of algorithms and data-structures for geeks
32 lines (18 loc) • 1.06 kB
Markdown
# [<font color="green">GeekFarmer</font>](https://github.com/geekfarmeropensource)
# algorithmpool.js
# In Progress . . . .
[](https://travis-ci.org/geekfarmeropensource/algorithmpool.js) [](https://coveralls.io/github/geekfarmeropensource/algorithmpool.js?branch=master) [](https://www.npmjs.com/package/algorithmpool)
## Installation
[](https://nodei.co/npm/algorithmpool/)
`npm install algorithmpool --save`
## Tests
`npm test`
## How To Use
```javascript
var algorithmpool = require('algorithmpool');
let arr = [4, 9, 1, 34, 12, 6, 5, 18, 51, 21, -5, -3, 89, -2]
console.log(algorithmpool.quickSort(arr))
```
```
output: [-5, -3, -2, 1, 4, 5, 6, 9, 12, 18, 21, 34, 51, 89]
```