Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aglove2189/blind75
my python solutions to the Blind 75 LeetCode questions
https://github.com/aglove2189/blind75
leetcode
Last synced: 28 days ago
JSON representation
my python solutions to the Blind 75 LeetCode questions
- Host: GitHub
- URL: https://github.com/aglove2189/blind75
- Owner: aglove2189
- Created: 2022-04-24T00:26:04.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-04-24T20:22:07.000Z (almost 3 years ago)
- Last Synced: 2024-11-16T11:24:03.994Z (3 months ago)
- Topics: leetcode
- Language: Python
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LeetCode Blind 75
**Problem** | **Solution** | **Time** | **Space**
-- | :-: | :-: | :-:
[TwoSum](https://leetcode.com/problems/two-sum/) | [solution](solutions/twosum.py) | O(n) | O(n)
[Valid Parentheses](https://leetcode.com/problems/valid-parentheses) | [solution](solutions/isvalid.py) | O(n) | O(n)
[Merge Two Sorted Lists](https://leetcode.com/problems/merge-two-sorted-lists)
[Best Time to Buy and Sell Stock](https://leetcode.com/problems/best-time-to-buy-and-sell-stock)
[Valid Palindrome](https://leetcode.com/problems/valid-palindrome)
[Invert Binary Tree](https://leetcode.com/problems/invert-binary-tree)
[Valid Anagram](https://leetcode.com/problems/valid-anagram)
[Binary Search](https://leetcode.com/problems/binary-search)
[Flood Fill](https://leetcode.com/problems/flood-fill)
[Maximum Subarray](https://leetcode.com/problems/maximum-subarray)
[Lowest Common Ancestor of a Binary Search Tree](https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-search-tree)
[Insert Interval](https://leetcode.com/problems/insert-interval)
[K Closest Points to Origin](https://leetcode.com/problems/k-closest-points-to-origin)
[Balanced Binary Tree](https://leetcode.com/problems/balanced-binary-tree)
[Linked List Cycle](https://leetcode.com/problems/linked-list-cycle)
[Implement Queue using Stacks](https://leetcode.com/problems/implement-queue-using-stacks)
[First Bad Version](https://leetcode.com/problems/first-bad-version)
[Ransom Note](https://leetcode.com/problems/ransom-note)
[Longest Substring Without Repeating Characters](https://leetcode.com/problems/longest-substring-without-repeating-characters)
[3Sum](https://leetcode.com/problems/3sum)
[Binary Tree Level Order Traversal](https://leetcode.com/problems/binary-tree-level-order-traversal)
[Clone Graph](https://leetcode.com/problems/clone-graph)
[Evaluate Reverse Polish Notation](https://leetcode.com/problems/evaluate-reverse-polish-notation)
[Course Schedule](https://leetcode.com/problems/course-schedule)
[Implement Trie (Prefix Tree)](https://leetcode.com/problems/implement-trie-prefix-tree)
[Coin Change](https://leetcode.com/problems/coin-change)
[Product of Array Except Self](https://leetcode.com/problems/product-of-array-except-self)
[Climbing Stairs](https://leetcode.com/problems/climbing-stairs)
[Longest Palindrome](https://leetcode.com/problems/longest-palindrome)
[Min Stack](https://leetcode.com/problems/min-stack)
[Reverse Linked List](https://leetcode.com/problems/reverse-linked-list)
[Validate Binary Search Tree](https://leetcode.com/problems/validate-binary-search-tree)
[Number of Islands](https://leetcode.com/problems/number-of-islands)
[Rotting Oranges](https://leetcode.com/problems/rotting-oranges)
[Search in Rotated Sorted Array](https://leetcode.com/problems/search-in-rotated-sorted-array)
[Combination Sum](https://leetcode.com/problems/combination-sum)
[Permutations](https://leetcode.com/problems/permutations)
[Merge Intervals](https://leetcode.com/problems/merge-intervals)
[Lowest Common Ancestor of a Binary Tree](https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-tree)
[Week Time Based Key-Value Store](https://leetcode.com/problems/week-time-based-key-value-store)
[Minimum Window Substring](https://leetcode.com/problems/minimum-window-substring)
[Serialize and Deserialize Binary Tree](https://leetcode.com/problems/serialize-and-deserialize-binary-tree)
[Trapping Rain Water](https://leetcode.com/problems/trapping-rain-water)
[Find Median from Data Stream](https://leetcode.com/problems/find-median-from-data-stream)
[Majority Element](https://leetcode.com/problems/majority-element)
[Add Binary](https://leetcode.com/problems/add-binary)
[Diameter of Binary Tree](https://leetcode.com/problems/diameter-of-binary-tree)
[Week Middle of the Linked List](https://leetcode.com/problems/week-middle-of-the-linked-list)
[Accounts Merge](https://leetcode.com/problems/accounts-merge)
[Sort Colors](https://leetcode.com/problems/sort-colors)
[Word Break](https://leetcode.com/problems/word-break)
[Partition Equal Subset Sum](https://leetcode.com/problems/partition-equal-subset-sum)
[String to Integer (atoi)](https://leetcode.com/problems/string-to-integer-atoi)
[Spiral Matrix](https://leetcode.com/problems/spiral-matrix)
[Subsets](https://leetcode.com/problems/subsets)
[Binary Tree Right Side View](https://leetcode.com/problems/binary-tree-right-side-view)
[Week Longest Palindromic Substring](https://leetcode.com/problems/week-longest-palindromic-substring)
[Word Ladder](https://leetcode.com/problems/word-ladder)
[Basic Calculator](https://leetcode.com/problems/basic-calculator)
[Maximum Profit in Job Scheduling](https://leetcode.com/problems/maximum-profit-in-job-scheduling)
[Merge k Sorted Lists](https://leetcode.com/problems/merge-k-sorted-lists)
[Largest Rectangle in Histogram](https://leetcode.com/problems/largest-rectangle-in-histogram)
[Maximum Depth of Binary Tree](https://leetcode.com/problems/maximum-depth-of-binary-tree)
[Contains Duplicate](https://leetcode.com/problems/contains-duplicate)
[Unique Paths](https://leetcode.com/problems/unique-paths)
[Construct Binary Tree from Preorder and Inorder Traversal](https://leetcode.com/problems/construct-binary-tree-from-preorder-and-inorder-traversal)
[Container With Most Water](https://leetcode.com/problems/container-with-most-water)
[Letter Combinations of a Phone Number](https://leetcode.com/problems/letter-combinations-of-a-phone-number)
[Word Search](https://leetcode.com/problems/word-search)
[Find All Anagrams in a String](https://leetcode.com/problems/find-all-anagrams-in-a-string)
[Minimum Height Trees](https://leetcode.com/problems/minimum-height-trees)
[Task Scheduler](https://leetcode.com/problems/task-scheduler)
[LRU Cache](https://leetcode.com/problems/lru-cache)
[Kth Smallest Element in a BST](https://leetcode.com/problems/kth-smallest-element-in-a-bst)