Welcome to the algobox npm package! algobox is a collection of common algorithms implemented in JavaScript, providing you with a toolbox of efficient solutions for various computational problems.
You can install algobox via npm:
npm install algobox
Usage To use algobox in your JavaScript/Node.js project, you can require the module and access the algorithms as follows:
const algobox = require('algobox');
// Example: Using QuickSort algorithm
const arr = [5, 4, 3, 2, 1];
algobox.Algo.QuickSort(arr);
console.log(arr); // Output: [1, 2, 3, 4, 5]