0.0.8 • Published 4 months ago

suparray v0.0.8

Weekly downloads
-
License
MIT
Repository
github
Last release
4 months ago

SUPARRAY

version

A Javascript package for array utils.

Install Package

npm i suparray

Utils

Examples

Shuffle

const array = [1,5,6,3,8];

const shuffleArray = shuffle(array); // [3,8,6,1,5]

Bubble Sort

const array = [1,5,6,3,8];

const bubbleSortArray = bubbleSort(array); // [1,3,5,6,8]

Selection Sort

const array = [1,5,6,3,8];

const selectionSortArray = selectionSort(array); //[1,3,5,6,8]

Merge Sort

const array = [1,5,6,3,8];

const mergeSortArray = mergeSort(array); // [1,3,5,6,8]

Github

Github

0.0.3

4 months ago

0.0.2

4 months ago

0.0.8

4 months ago

0.0.5

4 months ago

0.0.4

4 months ago

0.0.7

4 months ago

0.0.6

4 months ago

0.0.1

4 months ago