1.0.4 • Published 5 years ago

algoose v1.0.4

Weekly downloads
-
License
MIT
Repository
-
Last release
5 years ago

Algoose

A collection of Algorithms 🦆

Open Source Love MIT Licence Tests Lint Tests TypeScript

NOTE: This library is still in its development, so there might be some breaking changes!

Algorithms

Installation and Usage

  1. Add Algoose to your Project

    yarn add algoose
    # or
    npm install algoose
  2. Create index.js and Add the following to index.js

    const {binarySearch} = require('algoose');
    const result = binarySearch([0, 2, 3, 5, 7, 8], 5);
    console.log(result)
    // Output: 4

Contribute

  1. Fork on Github and Clone the repository

    git clone https://github.com/YourProfileName/algoose.git
  2. Install Dev Dependencies

    yarn install
    # or
    npm install
  3. Make changes

  4. Run tests

    yarn run tests
  5. Pull Request

Contributors

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago