1.0.0 • Published 11 months ago
@onesy/algorithms v1.0.0
Getting started
Add
yarn add @onesy/algorithmsAlgorithms
- Factorial
- Fibonacci
- Binary search
- Bubble sort
- Selection sort
- Insertion sort
- Merge sort
- Quick sort
- Radix sort
- Naive search
- LPS
- KMP
- etc.
Use
import { bubbleSort } from '@onesy/algorithms';
const value = [1, 14, 7, 4];
bubbleSort(value);
// [1, 4, 7, 14]
// etc.Dev
Install
yarnTest
yarn testProd
Build
yarn build1.0.0
11 months ago