- Acquire and Release Strategy
Pepcoding Video Explaination
- Binary Search Template
Suppose we have a search space. It could be an array, a range, etc. Usually it's sorted in ascending order.
- Core Concept: Monotonicity
Monotonicity in the context of binary search means that the function or condition we are interested in exhibits a consis
- Pattern + Template
sum = 7, l = 0, r = k - 1
- Template to solve substring problems
import java.util.HashMap;