#
Problem
Difficulty
Status
The two pointers technique uses two references to traverse data structures efficiently. Common patterns include converging pointers on sorted arrays, fast/slow pointers for cycle detection, and left/right pointers for partitioning.