Two Pointers transforms pair-finding into by using sorted order to eliminate impossible candidates. The pattern clicks when you realize that moving one pointer eliminates an entire row or column of the comparison matrix.
You'll reach for this pattern whenever you see "sorted array" and "find pairs."