Skip to content

Latest commit

Β 

History

History
35 lines (23 loc) Β· 1.04 KB

File metadata and controls

35 lines (23 loc) Β· 1.04 KB

LeetCode Solutions πŸš€

This repository contains my solutions to various LeetCode problems. The solutions are written in C++. The goal is to improve my problem-solving skills and share my learning process with others.

Problem List πŸ“

This section will contain links to the problems I've solved, categorized by difficulty and topic.

  1. Easy Problems 🟒
  2. Medium Problems 🟠
  3. Hard Problems πŸ”΄

How to Run Solutions ⚑

  1. Clone this repository to your local machine:
git clone https://github.com/navanizard/LeetCode.git
  1. Navigate to the problem's solution directory:
cd LeetCode/Easy #or LeetCode/Medium or LeetCode/Hard
  1. Compile and run the C++ solution (replace <filename> with the problem’s file):
g++ <filename>.cpp -o solution
./solution
  1. You can also run individual test cases to verify the correctness of the solution.

Feel free to reach out if you have suggestions, questions, or just want to chat! Happy coding! πŸ˜„πŸš€