Skip to content

An npm package that can help you to use famous algo in your coding

Notifications You must be signed in to change notification settings

Babur02/algobox_npm_package

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

algobox - Algorithms Toolbox

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.

Installation

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]

About

An npm package that can help you to use famous algo in your coding

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published