This repository contains personal solutions to LeetCode problems, organized by difficulty.
Each problem has its own folder with:
- The solution code (in C++ or Python).
- A
README.mdfile describing the approach and complexity.
easy/— Easy-level problemsmedium/— Medium-level problemshard/— Hard-level problems
- Folder name:
<problem-slug>(e.g.two_sum) - Code file:
solution.cpporsolution.py - Each problem has a
README.mdinside its folder with:- Problem link
- Approach
- Time and space complexity
easy/
└── two_sum/
├── solution.cpp
└── README.md
MIT