100. Same Tree


traverse through trees and recognize if there's same structure and val
Read more ⟶

101. Symmetric Tree


you can solve it the same method as in leetcode 100 same tree
Read more ⟶

424. Longest Repeating Character Replacement


check if length of `substring - max_freq` does not exceed k
Read more ⟶

480. Sliding Window Median


steroid version of 295 Median Finder with lazy removals and balance variable
Read more ⟶