🧠DSA Practice – Striver’s A2Z DSA Sheet
This repository contains my C++ implementations of Data Structures and Algorithms problems based on Striver’s A2Z DSA Sheet. It documents my personal progress and practice throughout my DSA learning journey.
⸻
🛠️ How to Use 1. Locate files • All C++ programs are inside the basics/src/ folder. 2. Compile code Use the following command to compile: Considering you are in DSA\basics For Mac
g++ src/filename.cpp -o out/filename3.1. Run the compiled code
./out/filenameFor Windows
g++ src/filename.cpp -o out/filename.exe3.2. Run the compiled code
./out/filename.exe- Tip: To quickly comment/uncomment lines in your editor: • Ctrl + / on Windows/Linux • Cmd + / on Mac
⸻
📌 Note
This is a personal practice repository and will be updated regularly as I progress through the DSA sheet. Stay tuned for more concepts and problem solutions!
⸻