Algorithms
Nothing to see here yet
Data Structures
- Linked list
- Stack
- Hashmap
LeetCode Problems
Some people focus on memorizing various algorithms, which can be beneficial at times but may also can be harmful to their problem-solving skills. Others rely only on problem-solving and might spend 10 hours on a single problem without finding a solution.
The most effective approach to solving coding problems combines both problem-solving skills and algorithm memorization. Instead of memorizing the exact code, you should be prepared to write any algorithm as needed. In other words, problem-solving is about recognizing patterns and knowing which algorithm to apply and implement.
Arrays and Hashing
- Contains Duplicate
- Contains Duplicate II
- Two Sum
- Two Sum II
- Maximum Subarray ⏳
- Best Time to Buy and Sell Stock ⏳
- Product of Array Except Self ⏳
- Group Anagrams
- Maximum Product Subarray ⏳
- Find Minimum in Rotated Sorted Array ⏳
- Search in Rotated Sorted Array ⏳
- Container With Most Water ⏳
Two Pointers
- Valid Palindrome
- Container With Most Water
- Longest Palindromic Substring
Stack
- Valid Parentheses
- Daily Temperatures
Sliding Window
- Best Time to Buy and Sell Stock
- Longest Substring Without Repeating Characters
Linked Lists
- Reverse Linked List
- Merge Two Sorted Lists
- Reorder List
Binary Search
- Binary Search
Trees
- Invert Binary Tree
- Maximum Depth of Binary Tree
Tries
- Implement Trie (Prefix Tree)