Read the detailed documentation at js.allalgorithms.com or see the docs
directory on Github. See Tree.
Want to contribute? GET STARTED HERE
npm install allalgorithms
const allalgorithms = require('allalgorithms');
const arr = [77, 2, 10, -2, 1, 7];
console.log(allalgorithms.sorting.bubbleSort(arr));
// -> [-2, 1, 2, 7, 10, 77]
Carlos Abraham |
MIT License © Carlos Abraham