1.0.3 • Published 5 years ago
algorithms-for-sorting v1.0.3
Algorithms for sorting
A package containing many different sorting algorithms.
Getting Started
Prerequisites
The latest version of npmInstalling
npm i algorithms-for-sortingUsage
const algorithm = require('./algorithms-for-sorting/index.js');
let sortedArr = algorithm.introSort([2,4,1,3,5]);
console.log(sortedArr);
//Output [1,2,3,4,5]Author
- Andreas Hummelmose - Andreas-Hum
License
This project is licensed under the ISC License - see the LICENSE.md file for details