Interval problems become linear after sorting, with most solutions comparing adjacent intervals. The pattern clicks when you recognize that sorted intervals enable single-pass processing of overlaps.
You'll reach for this pattern whenever you see start/end times, ranges, or scheduling constraints. If you can explain these concepts in your own words, you'll solve related problems faster under interview pressure.