This repository serves as a record of my journey through Data Structures and Algorithms.
As I progress through the NeetCode roadmap, I’m focused on
- Consistency: Solving problems daily to build muscle memory for common patterns.\
- Deep Dives: Moving beyond just "solving" to understanding time and space complexity (O(n) analysis) for every approach.\
- Continuous Improvement: Refined solutions are synced periodically as I learn more efficient techniques and language-specific optimizations.
NeetCode.io is a coding interview preparation platform featuring curated problems, video solutions, and an in-browser code editor. This repository is automatically populated with your accepted (or all) solutions using the GitHub Sync feature.
Solutions are organized by topic folder, then problem ID. Each submission is stored as a separate file:
<topic-folder>/
<problem-id>/
submission-0.<ext> ← first submission
submission-1.<ext> ← second submission
...
Example:
Data Structures & Algorithms/two-integer-sum/submission-0.py
Data Structures & Algorithms/binary-search/submission-0.ts
Python For Beginners/python-hello-world/submission-0.py
| Language | Extension |
|---|---|
| C++ | .cpp |