JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 5
  • Score
    100M100P100Q25859F
  • License MIT

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

Package Exports

  • leetils
  • leetils/dist/index.js
  • leetils/dist/index.mjs

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (leetils) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme


All (not really) of leetcode's problem solutions in one package
![downloads](https://img.shields.io/npm/dw/leetils) ![bundle size](https://img.shields.io/bundlephobia/minzip/leetils) ![module fornats: cjs, esm](https://img.shields.io/badge/module%20formats-cjs,%20esm-green)

Installation

Use the install command of your favourite package manager!

e.g.

npm install leetils

Usage

Simply import which ever utilities you would like to use

e.g.

import { combinationSum } from 'leetils';

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

Contribute

TODO