1.0.3 • Published 4 years ago

algorithms-for-sorting v1.0.3

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

Algorithms for sorting

A package containing many different sorting algorithms.

Getting Started

Prerequisites

The latest version of npm

Installing

npm i algorithms-for-sorting

Usage

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

License

This project is licensed under the ISC License - see the LICENSE.md file for details