Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/akashkobal/leet-code-python
Mastering LeetCode: A comprehensive collection of solved LeetCode challenges along with detailed solutions, showcasing proficiency in algorithmic problem-solving.
https://github.com/akashkobal/leet-code-python
akash akash-kobal dsa dsa-in-python leetcode leetcode-python leetcode-python3 leetcode-questions leetcode-solutions leetcode-top-150-questions
Last synced: 17 days ago
JSON representation
Mastering LeetCode: A comprehensive collection of solved LeetCode challenges along with detailed solutions, showcasing proficiency in algorithmic problem-solving.
- Host: GitHub
- URL: https://github.com/akashkobal/leet-code-python
- Owner: AkashKobal
- License: mit
- Created: 2024-04-25T17:59:14.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-10-24T04:37:49.000Z (about 2 months ago)
- Last Synced: 2024-10-24T23:06:04.825Z (about 2 months ago)
- Topics: akash, akash-kobal, dsa, dsa-in-python, leetcode, leetcode-python, leetcode-python3, leetcode-questions, leetcode-solutions, leetcode-top-150-questions
- Language: Python
- Homepage: https://theakash.co.in
- Size: 402 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# leet-code-python
### Mastering LeetCode: A comprehensive collection of solved LeetCode challenges along with detailed solutions, showcasing proficiency in algorithmic problem-solving.
Explore this repository to sharpen your coding skills, understand intricate algorithms, and elevate your competitive programming prowess. Dive into meticulously crafted solutions, annotated with explanations and optimizations, empowering you to tackle coding interviews and algorithmic challenges with confidence.
Let's embark on a journey of continuous learning and mastery in the realm of computer science and software engineering.
| Question | Solution | Leetcode | Level | Topic |
| ------------- | ------------- | ------------- | ------------- |-------------|
| Concatenation of Array |[Github](https://github.com/AkashKobal/leet-code-python/tree/main/Concatenation-of-Array) | [Leetcode](https://leetcode.com/submissions/detail/1243554248/) | $${\color{green}Easy}$$ |Array|
| Find All Duplicates in an Array | [Github](https://github.com/AkashKobal/leet-code-python/tree/main/Find-All-Duplicates-in-an-Array) | [Leetcode](https://leetcode.com/submissions/detail/1243537111/) | $${\color{orange}Medium}$$ | Array|
| Find the Highest Altitude | [Github](https://github.com/AkashKobal/leet-code-python/tree/main/Find-the-Highest-Altitude) | [Leetcode](https://leetcode.com/submissions/detail/1243569667/) | $${\color{green}Easy}$$ |Array|
| Matrix Diagonal Sum | [Github](https://github.com/AkashKobal/leet-code-python/tree/main/Matrix-Diagonal-Sum) | [Leetcode](https://leetcode.com/submissions/detail/1243514379/) | $${\color{green}Easy}$$ |Array, Matrix|
| Maximum Product Difference Between Two Pairs | [Github](https://github.com/AkashKobal/leet-code-python/tree/main/Maximum-Product-Difference-Between-Two-Pairs) | [Leetcode](https://leetcode.com/submissions/detail/1242199209/) | $${\color{green}Easy}$$ |Array, Sorting|
| Middle of the Linked List | [Github](https://github.com/AkashKobal/leet-code-python/tree/main/Middle-of-the-Linked-List) | [Leetcode](https://leetcode.com/submissions/detail/1256392742/) | $${\color{green}Easy}$$ |-------------|
| Palindrome Number | [Github](https://github.com/AkashKobal/leet-code-python/tree/main/Palindrome-Number) | [Leetcode](https://leetcode.com/submissions/detail/1241919703/) | $${\color{green}Easy}$$ |-------------|
| Reverse Linked List | [Github](https://github.com/AkashKobal/leet-code-python/tree/main/Reverse-Linked-List) | [Leetcode]() | $${\color{green}Easy}$$ |-------------|
| Roman to Integer | [Github](https://github.com/AkashKobal/leet-code-python/tree/main/Roman-to-Integer) | [Leetcode](https://leetcode.com/submissions/detail/1241910541/) | $${\color{green}Easy}$$ |-------------|
| Rotate Image | [Github](https://github.com/AkashKobal/leet-code-python/tree/main/Rotate-Image) | [Leetcode](https://leetcode.com/submissions/detail/1245861768/) | $${\color{orange}Medium}$$ |-------------|
| Running Sum of 1d Array | [Github](https://github.com/AkashKobal/leet-code-python/tree/main/Running-Sum-of-1d-Array) | [Leetcode](https://leetcode.com/submissions/detail/1241920612/) | $${\color{green}Easy}$$ |-------------|
| Two Sum | [Github](https://github.com/AkashKobal/leet-code-python/tree/main/Two-Sum) | [Leetcode](https://leetcode.com/submissions/detail/1241924802/) | $${\color{green}Easy}$$ |-------------|
| Add Two Numbers||[Leetcode](https://leetcode.com/problems/add-two-numbers/description/)| $${\color{orange}Medium}$$ |Linked List, Math, Recursion|
| Sum of Digits of String After Convert| [Github](https://github.com/AkashKobal/leet-code-python/tree/main/LeetCode/Sum-of-Digits-of-String-After-Convert)| [Leetcode](https://leetcode.com/problems/sum-of-digits-of-string-after-convert/description/?envType=daily-question&envId=2024-09-03) |$${\color{green}Easy}$$ |String|