Binary Search achieves by halving the search space with each comparison. The pattern clicks when you recognize monotonic properties: once something becomes true (or false), it stays that way.
You'll reach for this whenever you see "sorted" or "find minimum/maximum satisfying condition." Understanding these concepts deeply helps you solve related problems faster. Take time to internalize the pattern.