This repository contains my solutions for LeetCode problems.
LeetCode is a platform featuring coding challenges designed to improve algorithmic thinking and prepare for technical interviews.
Overall: 128 problems solved
Ensure you have Go installed (version 1.24+ is recommended).
No additional installation or virtual environments are needed.
To create a new problem structure, use the create_problem.sh script:
./create_problem.sh <number>Example:
./create_problem.sh 1This will create:
- A folder structure:
0001/ main.gowith a starter template for the solution
You can run solutions directly:
go run ./0001/main.goReplace 0001 with the specific problem number folder you want to execute.
To update the progress summary in this README after solving new problems, run the generate_readme.py script:
python3 generate_readme.py