Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/elf-alchemist/leet-code
My solutions to LeetCode problems.
https://github.com/elf-alchemist/leet-code
javascript leetcode nodejs
Last synced: 27 days ago
JSON representation
My solutions to LeetCode problems.
- Host: GitHub
- URL: https://github.com/elf-alchemist/leet-code
- Owner: elf-alchemist
- License: apache-2.0
- Created: 2023-11-08T15:27:57.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-14T16:38:11.000Z (11 months ago)
- Last Synced: 2024-02-14T17:46:12.377Z (11 months ago)
- Topics: javascript, leetcode, nodejs
- Language: JavaScript
- Homepage: https://leetcode.com/elf-alchemist/
- Size: 189 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# An Alchemist becomes a LeetCoder
```In this here repository lay me solutions of many a LeetCode dilemmas.
```
![LeetCode Stats](https://leetcard.jacoblin.cool/elf-alchemist?theme=dark&font=Fira%20Code)## Running on your own machine
Make sure your `node` CLI is up to the date. At least `v20.0.0`, otherwise no other packages are needed.```sh
$ node --version
v20.0.0
```## Running a specific problem
Use the `only` script, and specify the problem number id, if non exists, fails.```sh
$ npm run only 217
```Result ought to look like this:
```txt> [email protected] only
> _f(){ node --test src/core/$1.js; }; _f 217▶ LeetCode - 217
✔ Case 1 (0.817237ms)
✔ Case 2 (0.232366ms)
✔ Case 3 (0.186408ms)
▶ LeetCode - 217 (7.062002ms)ℹ tests 3
ℹ suites 1
ℹ pass 3
ℹ fail 0
ℹ cancelled 0
ℹ skipped 0
ℹ todo 0
ℹ duration_ms 155.120013```
## Running all problems
This is the wildcard, only run if a modicum of patience is present.```sh
$ npm run easy
```Result might look like:
```txt> [email protected] all
> node --test src/core/*.js▶ LeetCode - 1
✔ Case 1 (2.768196ms)
✔ Case 2 (0.474915ms)
✔ Case 3 (0.642463ms)
▶ LeetCode - 1 (10.867524ms)▶ LeetCode - 1268
✔ Case 1 (2.867021ms)
✔ Case 2 (0.78375ms)
▶ LeetCode - 1268 (10.511128ms)▶ LeetCode - 14
✔ Case 1 (1.722545ms)
✔ Case 2 (0.99397ms)
✔ Case 3 (0.595111ms)
✔ Case 4 (0.594552ms)
▶ LeetCode - 14 (12.853857ms)
... ... ...```