An open API service indexing awesome lists of open source software.

https://github.com/11xdeveloper/leetils

All (not really) of leetcode's problem solutions in one package.
https://github.com/11xdeveloper/leetils

javascript leetcode leetcode-javascript leetcode-solutions typescript utilities-library

Last synced: 9 months ago
JSON representation

All (not really) of leetcode's problem solutions in one package.

Awesome Lists containing this project

README

          



leetils



All (not really) of leetcode's problem solutions in one package



Downloads: /week


bundle size

module formats: cjs, esm

---

## 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