Package Exports
- algorithmpool
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (algorithmpool) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
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]