my-util-js-functions
v0.0.5-beta.0
Published
Javascript implementation of widely known algorithms, functions and data structures.
Downloads
3
Maintainers
Readme
my-util-js-functions
Javascript implementation of widely known algorithms, functions and data structures.
Install
npm i --save my-util-js-functions
How to use?
Example1 - quicksort
const { quicksort } = require('my-util-js-functions')
const unsortedArray = [3, 2, 1, 10, -5]
const sortedArray = quicksort(unsortedArray)
console.log(sortedArray)
Example2 - fibonacciBigInt
const { fibonacciBigInt } = require('my-util-js-functions')
console.log(fibonacciBigInt(BigInt(125)))
Functions available
Check here.