Skip to content

Commit b2aaf9d

Browse files
committed
Improved appearance of the repo
1 parent 88d4c85 commit b2aaf9d

File tree

4 files changed

+61
-25
lines changed

4 files changed

+61
-25
lines changed

Diff for: 1. Two Sum/firstTry.py

-21
This file was deleted.

Diff for: 13. Roman to Integer/ReadME[Solution].md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Roman to Integer Converter
1+
# 13. Roman to Integer
22

33
## Description
44

Diff for: 14. Longest Common Prefix/ReadME[Solution].md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Longest Common Prefix Finder
1+
# 14. Longest Common Prefix
22

33
## Description
44

Diff for: README.md

+59-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,59 @@
1-
# LeetCode-Solutions-withMe
2-
This repo includes solving many problems on the LeetCode platform with Python 3 and is classified according to the number and name of the problem in the form of folders. Each folder contains one or more ways to solve the problem, in addition to a file that contains the problem and a file that contains an explanation of the solution.
1+
# LeetCode Solutions withMe
2+
3+
![LeetCode Logo](https://upload.wikimedia.org/wikipedia/commons/1/19/LeetCode_logo_black.png)
4+
5+
## Overview
6+
7+
Welcome to **LeetCode Solutions withMe**! This repository contains a collection of Python 3 solutions to various problems from the LeetCode platform. The solutions are organized into folders based on the problem numbers and names. Each folder houses one or more approaches to solve the problem, along with a detailed explanation of the solution.
8+
9+
## Why Use This Repository?
10+
11+
- **Diverse Problem Collection**: You'll find a wide range of problems solved here, spanning different difficulty levels and algorithmic concepts, which will help you strengthen your coding skills.
12+
13+
- **Python 3 Solutions**: All the solutions are written in Python 3, making it easy to understand and implement for Python enthusiasts.
14+
15+
- **Organized Structure**: Problems are organized in a structured manner, allowing you to quickly locate and access the solutions you're interested in.
16+
17+
- **Detailed Explanations**: Each solution comes with a comprehensive explanation, helping you grasp the thought process and approach behind the code.
18+
19+
## How to Navigate the Repository?
20+
21+
The repository is organized into folders, and each folder is named after the problem's unique identifier on LeetCode. For instance, problem "Two Sum" with ID "1" will be found in the folder `001_Two_Sum`. Within each problem folder, you'll find the following:
22+
23+
1. **README.md**: This file contains a concise description of the problem statement.
24+
25+
2. **README[Solution]**: This file contains a concise description of the problem solve and detailed explanation of the solution's logic, approach, and algorithmic complexity..
26+
27+
3. **ProblemName.py**: In this file is the solution used by me to solve the problem using Python
28+
29+
## Contribution
30+
31+
Contributions are welcome! If you want to add another way to solve the problem, please follow these steps:
32+
33+
1. Fork this repository.
34+
35+
2. Create a new branch: `git checkout -b feature/your-feature-name`.
36+
37+
3. Make your changes and commit them: `git commit -m 'Add your message here'`.
38+
39+
4. Push to the branch: `git push origin feature/your-feature-name`.
40+
41+
5. Submit a pull request to the `main` branch.
42+
43+
Please ensure that your code is well-documented, and the explanation is clear to understand.
44+
45+
46+
47+
## Disclaimer
48+
49+
These solutions are intended for educational and learning purposes. Using them directly in a LeetCode competition is a violation of the platform's rules. We encourage you to use this repository to learn and enhance your problem-solving skills.
50+
51+
## Contact
52+
53+
For any questions or suggestions, feel free to reach out to the project maintainer:
54+
55+
Maintainer: [Ghaith Ahmed](mailto:[email protected])
56+
57+
Let's grow and learn together through coding!
58+
59+
Happy Coding! 🚀

0 commit comments

Comments
 (0)