0.0.9 • Published 2 years ago

eliminassian v0.0.9

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

Table of Contents

Why should you use Eliminassian?

  • 🚀 <2kB size (zipped)
  • ✨ TypeScript definitions built in
  • 📖 Thorough and detailed documentation
  • ✅ Tested end-to-end with Jest
  • 🌟 Code quality perfected with linters (Prettier, ESLint, EditorConfig, Markdownlint) to reduce bundle size and ensure bug-free code
  • 💫 Automated GitHub Workflows ensure that every change is high quality and functional

Installation

Using npm:

npm install eliminassian

Using yarn:

yarn add eliminassian

You can browse the package's files on unpkg.

Usage

// ESM: import Eliminassian from "eliminassian";
const Eliminassian = require("eliminassian");

const input = [
  [1, 1, 0, 10],
  [0, 1, 1, 15],
  [2, 1, 1, 25],
];

const solution = new Eliminassian(input).solve().numbered;
/**
 solution = [
    [1, 0, 0, 5],
    [0, 1, 0, 5],
    [0, 0, 1, 10],
 ]
*/

Website

Website Status

The website contains all API documentation and information about this package.

Contributors

Project Contributors (emoji key):

This project follows the all-contributors specification. Contributions of any kind welcome!

0.0.9

2 years ago

0.0.8

2 years ago

0.0.7

2 years ago

0.0.6

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.1

2 years ago