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.
- Host: GitHub
- URL: https://github.com/11xdeveloper/leetils
- Owner: 11xdeveloper
- Created: 2020-11-20T22:39:58.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-01-30T05:22:08.000Z (almost 2 years ago)
- Last Synced: 2024-08-11T12:56:53.409Z (over 1 year ago)
- Topics: javascript, leetcode, leetcode-javascript, leetcode-solutions, typescript, utilities-library
- Language: TypeScript
- Homepage: https://github.com/11xdeveloper/leetils#readme
- Size: 332 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
---
## 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