Skip to content

Latest commit

 

History

History
63 lines (46 loc) · 2.31 KB

File metadata and controls

63 lines (46 loc) · 2.31 KB

LeetCode 75 - C++ Solution Repository 🚀

Welcome to my LeetCode 75 solution repository! This repository contains well-structured, optimized C++ solutions to all LeetCode 75 problems, along with detailed explanations for each problem to enhance your understanding.

📌 About LeetCode 75

LeetCode 75 is a curated list of essential coding problems designed to improve problem-solving skills for technical interviews, competitive programming, and coding assessments. These problems cover a broad spectrum of topics that help you master data structures, algorithms, and their applications.

📂 Repository Structure

The solutions are categorized based on topics, making it easy to navigate:

  • Arrays & Strings
  • Linked Lists
  • Stacks & Queues
  • Trees & Graphs
  • Dynamic Programming
  • Bit Manipulation
  • Two Pointers, Sliding Window, and more

📑 LeetCode 75 Problem List

I have solved all LeetCode 75 problems, and they are organized into different categories. You can find solutions in the respective folders.

🔥 Getting Started

Clone the Repository

To get a local copy, use the following command:

git clone https://github.com/suman105/LeetCode-75.git
cd LeetCode-75

⚙️ Prerequisites

Ensure you have C++ and Git installed on your system. You can follow the installation guides for C++ and Git.

🖥️ Running the Code

You can run any solution using your preferred IDE or by compiling it from the command line using:

g++ <filename>.cpp -o <outputfile>
./<outputfile>

🤝 Contributions

Contributions are welcome! Feel free to fork this repository, suggest improvements, or add alternative solutions. To contribute:

  1. Fork the repository.
  2. Create a new branch.
    git checkout -b feature-branch
  3. Commit your changes.
    git commit -am 'Add new solution'
  4. Push to your fork.
    git push origin feature-branch
  5. Open a pull request.

Show Some Support

If you find this repository helpful, consider giving it a star⭐ on GitHub. Your support motivates me to continue improving and adding more solutions! 🚀

Happy Coding! 💻🎯