<div align="center">
  <a href="https://github.com/11xdeveloper/leetils#readme">
    <img alt="leetils" src="https://i.imgur.com/kuQlkxY.png" height="150px" />
  </a>
</div>

<br/>

<div align="center">
  <strong>All (not really) of leetcode's problem solutions in one package</strong>
  <br />
  <a href="https://www.npmjs.com/package/leetils">
    <img src="https://img.shields.io/npm/dw/leetils" alt="Downloads: /week">
  </a>
  <a href="https://bundlephobia.com/package/leetils">
    <img src="https://img.shields.io/bundlephobia/minzip/leetils" alt="bundle size">
  </a>
  <img src="https://img.shields.io/badge/module%20formats-cjs,%20esm-green" alt="module formats: cjs, esm">
</div>

---

## Installation

Use the `install` command of your favourite package manager!

e.g.

```bash
npm install leetils
```

---

## Usage

Simply import which ever utilities you would like to use

e.g.

```ts
import { combinationSum } from 'leetils';

console.log(combinationSum([2, 3, 6, 7], 7)); // [[2, 2, 3], [7]]
```

---

## Contribute

TODO
