Grind75 Flashcards
Use a hash map to store the difference of the target and the current element as the key and the index as the value.
Best Time To Buy And Sell Stock,https://leetcode.com/problems/best-time-to-buy-and-sell-stock
Keep track of the minimum price and maximum profit while iterating through the list.
Majority Element,https://leetcode.com/problems/majority-element
Use Boyer-Moore Voting Algorithm to find the majority element.
Contains Duplicate,https://leetcode.com/problems/contains-duplicate
Use a set to check for duplicates.
Insert Interval,https://leetcode.com/problems/insert-interval
Merge intervals while iterating through the list.
3Sum,https://leetcode.com/problems/3sum
Sort the array and use three pointers to find the triplets.
Product Of Array Except Self,https://leetcode.com/problems/product-of-array-except-self
Use two arrays to store the product of all elements to the left and right of each element.
Combination Sum,https://leetcode.com/problems/combination-sum
Use backtracking to find all possible combinations.
Merge Intervals,https://leetcode.com/problems/merge-intervals
Sort intervals by starting point and merge overlapping intervals.
Sort Colors,https://leetcode.com/problems/sort-colors
Use the Dutch National Flag algorithm to sort the colors in one pass.
Container With Most Water,https://leetcode.com/problems/container-with-most-water
Use two pointers to find the maximum area.
Invert Binary Tree,https://leetcode.com/problems/invert-binary-tree
Use a recursive function to swap the left and right children of each node.
Balanced Binary Tree,https://leetcode.com/problems/balanced-binary-tree
Check if the difference in heights of the left and right subtrees is no more than one.
Diameter of Binary Tree,https://leetcode.com/problems/diameter-of-binary-tree
Use a recursive function to find the maximum depth of the left and right subtrees.
Maximum Depth of Binary Tree,https://leetcode.com/problems/maximum-depth-of-binary-tree
Use a recursive function to find the maximum depth.
Binary Tree Level Order Traversal,https://leetcode.com/problems/binary-tree-level-order-traversal
Use a queue to traverse the tree level by level.
Lowest Common Ancestor of a Binary Tree,https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-tree
Use a recursive function to find the lowest common ancestor.
Binary Tree Right Side View,https://leetcode.com/problems/binary-tree-right-side-view
Use a queue to traverse the tree level by level and add the rightmost node of each level to the result.
Construct Binary Tree from Preorder and Inorder Traversal,https://leetcode.com/problems/construct-binary-tree-from-preorder-and-inorder-traversal
Use a recursive function to build the tree.
Serialize and Deserialize Binary Tree,https://leetcode.com/problems/serialize-and-deserialize-binary-tree
Use a queue to traverse the tree and serialize/deserialize it.
Valid Palindrome,https://leetcode.com/problems/valid-palindrome
Use two pointers to check if the string is a palindrome.
Valid Anagram,https://leetcode.com/problems/valid-anagram
Use a hash map to count the frequency of each character.
Longest Palindrome,https://leetcode.com/problems/longest-palindromic-substring
Use dynamic programming to find the longest palindromic substring.
Longest Substring Without Repeating Characters,https://leetcode.com/problems/longest-substring-without-repeating-characters
Use a sliding window to find the longest substring.
String to Integer (atoi),https://leetcode.com/problems/string-to-integer-atoi
Handle whitespaces, signs, and overflow while converting the string to an integer.
Longest Palindromic Substring,https://leetcode.com/problems/longest-palindromic-substring
Use dynamic programming to find the longest palindromic substring.
Find All Anagrams in a String,https://leetcode.com/problems/find-all-anagrams-in-a-string
Use a sliding window and a hash map to find all anagrams.
Minimum Window Substring,https://leetcode.com/problems/minimum-window-substring
Use a sliding window and a hash map to find the minimum window substring.
Flood Fill,https://leetcode.com/problems/flood-fill
Use a queue or recursive function to perform the flood fill.
01 Matrix,https://leetcode.com/problems/01-matrix
Use a queue to perform a breadth-first search from all zero cells.
Clone Graph,https://leetcode.com/problems/clone-graph
Use a depth-first search to clone the graph.
Course Schedule,https://leetcode.com/problems/course-schedule
Use a depth-first search to detect cycles in the graph.
Number of Islands,https://leetcode.com/problems/number-of-islands
Use a depth-first search to count the number of islands.
Rotting Oranges,https://leetcode.com/problems/rotting-oranges
Use a queue to perform a breadth-first search from all rotten oranges.
Accounts Merge,https://leetcode.com/problems/accounts-merge
Use a union-find data structure to merge the accounts.
Word Search,https://leetcode.com/problems/word-search
Use a depth-first search to find the word in the grid.
Minimum Height Trees,https://leetcode.com/problems/minimum-height-trees
Use a breadth-first search to find the minimum height trees.
Word Ladder,https://leetcode.com/problems/word-ladder
Use a breadth-first search to find the shortest transformation sequence.
Valid Parentheses,https://leetcode.com/problems/valid-parentheses
Use a stack to check if the parentheses are valid.
Implement Queue using Stacks,https://leetcode.com/problems/implement-queue-using-stacks
Use two stacks to implement a queue.
Evaluate Reverse Polish Notation,https://leetcode.com/problems/evaluate-reverse-polish-notation
Use a stack to evaluate the reverse Polish notation.
Min Stack,https://leetcode.com/problems/min-stack
Use two stacks to implement a min stack.
Trapping Rain Water,https://leetcode.com/problems/trapping-rain-water
Use two pointers to find the amount of trapped rainwater.
Basic Calculator,https://leetcode.com/problems/basic-calculator
Use a stack to evaluate the expression.
Largest Rectangle in Histogram,https://leetcode.com/problems/largest-rectangle-in-histogram
Use a stack to find the largest rectangle.
Merge Two Sorted Lists,https://leetcode.com/problems/merge-two-sorted-lists
Use two pointers to merge the lists.
Linked List Cycle,https://leetcode.com/problems/linked-list-cycle
Use two pointers to detect a cycle in the linked list.
Reverse Linked List,https://leetcode.com/problems/reverse-linked-list
Use a recursive or iterative function to reverse the linked list.
Middle of the Linked List,https://leetcode.com/problems/middle-of-the-linked-list
Use two pointers to find the middle of the linked list.
LRU Cache,https://leetcode.com/problems/lru-cache
Use a hash map and a doubly linked list to implement the LRU cache.
Binary Search,https://leetcode.com/problems/binary-search
Use binary search to find the target element.
First Bad Version,https://leetcode.com/problems/first-bad-version
Use binary search to find the first bad version.
Search in Rotated Sorted Array,https://leetcode.com/problems/search-in-rotated-sorted-array
Use binary search to find the target element.
Time Based Key-Value Store,https://leetcode.com/problems/time-based-key-value-store
Use a hash map and a list to store the key-value pairs.
Maximum Profit in Job Scheduling,https://leetcode.com/problems/maximum-profit-in-job-scheduling
Use dynamic programming to find the maximum profit.
Lowest Common Ancestor of a Binary Search Tree,https://leetcode.com/problems/lowest-common-ancestor-of-a-binary-search-tree
Use a recursive function to find the lowest common ancestor.
Validate Binary Search Tree,https://leetcode.com/problems/validate-binary-search-tree
Use a recursive function to validate the binary search tree.
Kth Smallest Element in a BST,https://leetcode.com/problems/kth-smallest-element-in-a-bst
Use an inorder traversal to find the kth smallest element.
Climbing Stairs,https://leetcode.com/problems/climbing-stairs
Use dynamic programming to find the number of ways to climb the stairs.
Maximum Subarray,https://leetcode.com/problems/maximum-subarray
Use dynamic programming to find the maximum subarray.
Coin Change,https://leetcode.com/problems/coin-change
Use dynamic programming to find the minimum number of coins.
Partition Equal Subset Sum,https://leetcode.com/problems/partition-equal-subset-sum
Use dynamic programming to partition the array.
Unique Paths,https://leetcode.com/problems/unique-paths
Use dynamic programming to find the number of unique paths.
Ransom Note,https://leetcode.com/problems/ransom-note
Use a hash map to count the frequency of each character.
Add Binary,https://leetcode.com/problems/add-binary
Use a loop to add the binary numbers.
Spiral Matrix,https://leetcode.com/problems/spiral-matrix
Use four pointers to traverse the matrix in a spiral order.
K Closest Points to Origin,https://leetcode.com/problems/k-closest-points-to-origin
Use a priority queue to find the k closest points.
Task Scheduler,https://leetcode.com/problems/task-scheduler
Use a priority queue to schedule the tasks