1.0.0 • Published 4 years ago

use-algorithms v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

Use algorithms

Simple implementation of algorithms in JavaScript for your usage.

How to use?

First read what is the input of the algorithm you want to use in src/algorithms/, then call it and apply it.

const { fibonacci } = require('use-algorithms');

const fibonacciSequenceList = fibonacci(9);

console.log(fibonacciSequenceList); // [1, 1, 2, 3, 5, 8, 13, 21, 34]

CONTRIBUTE

You can contribute by adding any algorithm you want, follow the next stablished rules to create a PR.

Feel free to contribute 🚀.