Just tracking personal progress for LeetCode πββοΈπββοΈ.
Mostly in TypeScript, but also Kotlin, Go, Java, and a few others for fun.
My Leetcode Account :)
To make life easier, I wrote a shell script that generates everything I need when I add a new solution. It creates:
- A folder for the problem
- A
.ts
file for the code - A
.md
file for a solution explanation and tips for future me
The command is:
npm run question <QuestionNumber> <QuestionName>
So, for example, I just write:
npm run question 1 TwoSum