https://github.com/dolphinium/leet-code
repo for LeetCode problems that I solved
https://github.com/dolphinium/leet-code
algorithms leetcode python
Last synced: 3 months ago
JSON representation
repo for LeetCode problems that I solved
- Host: GitHub
- URL: https://github.com/dolphinium/leet-code
- Owner: dolphinium
- Created: 2024-12-14T20:50:23.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-01-06T19:25:59.000Z (9 months ago)
- Last Synced: 2025-04-07T07:58:17.505Z (6 months ago)
- Topics: algorithms, leetcode, python
- Language: Jupyter Notebook
- Homepage: https://leetcode.com/u/d0lphinium/
- Size: 1.23 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
You can check out my LeetCode profile [here](https://leetcode.com/u/d0lphinium/).
# Problem List:
## Arrays & Hashings:
* 242: isAnagram
* 1: twoSum
* 49: Group Anagrams
* 347: Top K Frequent Elements
* 271: Encode and Decode Strings
* 238: Product of Array Except Self
* 36: Valid Sudoku
* 128: Longest Consecutive Sequence## Two Pointers:
* 125: Valid Palindrome
* 167: Two Sum II - Input Array Is Sorted## Stack:
* 20: Valid Parantheses
* 155: Min Stack## Binary Search:
* 704: Binary Search
* 74: Search a 2D Matrix## Sliding Window:
* 121: Best Time to Buy and Sell Stock
* 3: Longest Substring Without Repeating Characters## Linked List:
* 206: Reverse Linked List
* 21 : Merge Two Sorted Lists
* 141: Linked List Cycle
* 143: Reorder List## Trees:
* 226: Invert Binary Tree
* 104: Maximum Depth of Binary Tree