A personal archive of solved NeetCode.io coding interview problems, kept up to date automatically via NeetCode's GitHub Sync integration.
This repository contains my submitted solutions to problems from NeetCode.io, a coding interview preparation platform offering curated problems, video walkthroughs, and an in-browser editor. Each submission is pushed here automatically, so the repository reflects an ongoing practice log rather than a fixed, curated portfolio.
Solutions are organized by topic, then by problem, then by individual submission:
<topic>/
└── <problem-id>/
├── submission-0.<ext> # first attempt
├── submission-1.<ext> # refined or optimized version
└── ...
Multiple submission-N files under a single problem are expected. Each one represents an iteration on that problem — typically progressing from an initial working solution toward a more optimal one.
This repository is connected to NeetCode's GitHub Sync, which supports:
- Auto-commit — submissions are pushed automatically as they are made (accepted-only or all, depending on configuration)
- Bulk sync — past solutions can be pushed in bulk at any time
- Manual sync — individual submissions can be synced or removed from a problem's submission history
As a result, the contents of this repository change frequently. This README intentionally avoids listing specific problems, categories, or counts, since any such list would become outdated almost immediately.
This repository serves as a continuous practice log for algorithmic problem-solving, primarily covering Data Structures & Algorithms, with C++ as the main implementation language.
Content updates automatically as new problems are solved.