Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sahasourav17/leetcode
https://github.com/sahasourav17/leetcode
array dynamic-programming graph greedy-algorithms interview-preparation leetcode-python leetcode-solutions linked-list problem-solving
Last synced: about 6 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/sahasourav17/leetcode
- Owner: sahasourav17
- Created: 2022-08-17T12:04:32.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-03T07:18:26.000Z (5 days ago)
- Last Synced: 2025-01-03T08:23:00.189Z (5 days ago)
- Topics: array, dynamic-programming, graph, greedy-algorithms, interview-preparation, leetcode-python, leetcode-solutions, linked-list, problem-solving
- Language: Python
- Homepage:
- Size: 2.14 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Solutions of LeetCode Problems
## **Solved Problems of LeetCode Top Interview 150**
- [88. Merge Sorted Array](https://leetcode.com/problems/merge-sorted-array/) | [Solution](./Top%20Interview%20150/0088-merge-sorted-array.py)
- [26. Remove Duplicates from Sorted Array](https://leetcode.com/problems/remove-duplicates-from-sorted-array/) | [Solution](./Top%20Interview%20150/0026-remove-duplicates-from-sorted-array.py)
- [27. Remove Element](https://leetcode.com/problems/remove-element/) | [Solution](./Top%20Interview%20150/0027-remove-element.py)
## **Solved Blind 75 Questions:**
**Array**
- [Two sum](https://leetcode.com/problems/two-sum/)
- [Contains Duplicate](https://leetcode.com/problems/contains-duplicate/)
- [Best Time to Buy and Sell Stock](https://leetcode.com/problems/best-time-to-buy-and-sell-stock/)
- [Product of Array Except Self](https://leetcode.com/problems/product-of-array-except-self/)**Binary**
- [Sum of Two Intergers](https://leetcode.com/problems/sum-of-two-integers/)
**Dynamic Programming**
- [Climbing Stairs](https://leetcode.com/problems/climbing-stairs/)
**Graph**
- [Number of Islands](https://leetcode.com/problems/number-of-islands/)
- [Clone Graph](https://leetcode.com/problems/clone-graph/description/)
- [Course Schedule](https://leetcode.com/problems/course-schedule/description/)**Linked List**
- [Reverse a Linked List](https://leetcode.com/problems/reverse-linked-list/)
- [Detect Cycle in a Linked List](https://leetcode.com/problems/linked-list-cycle/)
- [Merge Two Sorted Lists](https://leetcode.com/problems/merge-two-sorted-lists/)
- [Reorder List](https://leetcode.com/problems/reorder-list/)
- [Remove Nth Node From End of List](https://leetcode.com/problems/remove-nth-node-from-end-of-list/)**Matrix**
- [Set Matrix Zeros](https://leetcode.com/problems/set-matrix-zeroes/)
- [Spiral Matrix](https://leetcode.com/problems/spiral-matrix/)
- [Rotate Image](https://leetcode.com/problems/rotate-image/)
- [Word Search](https://leetcode.com/problems/word-search/)**String**
- [Valid Anagram](https://leetcode.com/problems/valid-anagram/)
- [Valid Parenthese](https://leetcode.com/problems/valid-parentheses/)
- [Valid Palindrome](https://leetcode.com/problems/valid-palindrome/)