1.0.0 • Published 4 years ago

quicksorta v1.0.0

Weekly downloads
1
License
ISC
Repository
github
Last release
4 years ago

Quicksort algorithm Sort a number array with quicksort algorithm

Install: const quicksorta = require("quicksorta");

Examples

let sortarr = quicksorta([5,4, 6, 7, 1, -12]);
console.log(sortarr);
output: [ -12, 1, 4, 5, 6, 7 ]
1.0.0

4 years ago