simple-bubble-sort
v1.0.3
Published
Simple bubble sort algorithm implementation
Downloads
2
Maintainers
Readme
Simple Bubble Sort
Simple bubble sort algorithm implementation
Install
npm install simple-bubble-sort
yarn add simple-bubble-sort
Usage
import bubbleSort from 'simple-bubble-sort';
const sorted = bubbleSort([10, 2, 5, 99, 7, 0]); // [0, 2, 5, 7, 10, 99]