sorting-algorithms-js
v1.0.2
Published
A collection of sorting algorithms implemented in JavaScript.
Downloads
158
Maintainers
Readme
sorting-algorithms-js
A collection of sorting algorithms implemented in JavaScript.
Installation
npm install sorting-algorithms-js
Usage
import { bubbleSort, quickSort } from 'sorting-algorithms-js';
const arr = [5, 3, 8, 4, 2];
const sortedArray = quickSort(arr);
console.log(sortedArray); // Output: [2, 3, 4, 5, 8]