algorithmpool
v1.2.0
Published
A pool of algorithms and data-structures for geeks
Downloads
12
Maintainers
Readme
GeekFarmer
algorithmpool.js
In Progress . . . .
Installation
npm install algorithmpool --save
Tests
npm test
How To Use
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]