Coding Problems
Return level order traversal of binary tree nodes
Design class to find median of numbers from data stream
Kth Largest Element in Array
MediumFind kth largest element in unsorted array
Insert Interval
MediumInsert new interval into sorted list of non-overlapping intervals
Meeting Rooms II
MediumFind minimum number of rooms needed for all meetings
Trapping Rain Water
HardCalculate how much water can be trapped between bars
Container With Most Water
MediumFind two lines that form container with most water
Find minimum element in rotated sorted array
Search for target in rotated sorted array
Rotting Oranges
MediumCalculate time until all fresh oranges are rotten (BFS)
Number of Islands
MediumCount number of islands in 2D grid (1=land, 0=water)
Course Schedule
MediumCheck if you can finish all courses given prerequisites
Word Break
MediumDetermine if string can be segmented into dictionary words
Find the longest substring that is a palindrome
Find smallest substring containing all characters of pattern
Find length of longest substring without repeating characters