LeetCode Solutions Repository 🚀

Welcome to my LeetCode solutions repository! Here you'll find my solutions to various LeetCode questions. Feel free to explore and use them as a reference for your own learning.

📚 Table of Contents

  1. About
  2. How to Use
  3. Folder Structure
  4. Contributing
  5. Acknowledgements

📖 About

This repository contains my solutions to LeetCode problems in different programming languages. Each solution is accompanied by a detailed explanation and approach, providing insights into the thought process behind the solution.

🚀 How to Use

  • Browse the folders corresponding to different difficulty levels (Easy, Medium, Hard).
  • Inside each folder, you'll find individual problem directories with clear names.
  • Each problem directory contains the solution file(s) and a README with the problem statement and any additional information.

📂 Folder Structure

leetcode-solutions/
│
├── 🟢 Easy/
│   ├── ProblemName1/
│   │   ├── Solution1.ext
│   │   ├── Solution2.ext
│   │   └── README.md
│   ├── ProblemName2/
│   └── ...
│
├── 🟡 Medium/
│   ├── ProblemName3/
│   │   ├── Solution1.ext
│   │   └── README.md
│   └── ...
│
└── 🔴 Hard/
    ├── ProblemName4/
    │   └── ...
    └── ...