Master key concepts and patterns with interactive flashcards
Card 1 of 801% Complete
EasyArrays
What is the Two Pointer technique?
Click or press Space to reveal answer
EasyArrays
What is the Two Pointer technique?
A technique using two pointers (usually start and end) to traverse an array from both ends simultaneously. Commonly used for: finding pairs that sum to a target, reversing arrays, removing duplicates in sorted arrays.