1.0.0 • Published 6 years ago

@narendras/leet v1.0.0

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

@narendras/leet

Collection of solutions for various algorithmic challenges, with explanations and playground.

What's in the box?

The src folder contains all of the algorithm problems sorted by its leetcode number:

[src]
└── [number]
    ├── index.ts
    └── [problem-name].test.ts

Inside a problem's folder:

  • index.ts The file containing the solution itself.
  • [problem name].test.ts Tests for the problem.

Creating Your Own Solutions

Running yarn alg new <name> -n [number] creates a new solutions folder with the given number (or generated if not passed).