Skip to main content
Back to Topics

Two Pointers Problems (251)

Problems tagged with Two Pointers

About Two Pointers

The Two Pointers technique is a powerful algorithmic pattern used to process arrays or strings efficiently by maintaining two indices that move through the data structure. Instead of using nested loops, two pointers allow you to scan data from different directions or at different speeds, reducing time complexity from O(n²) to O(n) in many problems. This optimization is why the technique appears frequently in coding interviews and competitive programming.

Most Two Pointers problems are built on top of linear data structures such as Array or String. By carefully adjusting pointer positions—either moving toward each other or moving together—you can efficiently search for pairs, remove duplicates, reverse segments, or validate conditions across a sequence. Many interview problems that seem complex at first become straightforward once you recognize the underlying pointer pattern.

Two Pointers also connects naturally with other core DSA topics. For example, sorted arrays often combine the technique with Binary Search or Sorting. When the window between two pointers expands and contracts dynamically, the idea evolves into the popular Sliding Window technique. Some variations also use a Hash Table to track values while pointers move.

Common Two Pointers patterns include:

  • Opposite direction pointers: One pointer starts at the beginning and the other at the end (e.g., pair sum in a sorted array).
  • Fast and slow pointers: Two pointers move at different speeds to detect cycles or find middle elements.
  • Partitioning: Rearranging elements around a condition or pivot.
  • Deduplication: Removing duplicates from sorted arrays in-place.

If you're preparing for technical interviews, mastering this pattern is essential. Companies like Amazon, Google, and Meta regularly test it because it evaluates problem-solving ability, time complexity optimization, and familiarity with fundamental data structures. FleetCode provides 240 Two Pointers practice problems with step-by-step explanations to help you recognize patterns quickly and solve interview questions with confidence.

Prerequisites

1
Array

Most Two Pointers problems operate on arrays. Understanding indexing, iteration, and in-place modification is essential before applying pointer movement strategies.

2
String

Many interview questions apply the technique to strings for palindrome checks, substring comparisons, and character-based scanning problems.

3
Sorting

Several Two Pointers solutions rely on sorted input. Knowing sorting algorithms helps you prepare data so opposite-direction pointers can efficiently find pairs or ranges.

4
Hash Table

Some problems combine pointers with hash tables to track frequencies or previously seen values while scanning the array.

5
Sliding Window

Sliding window is a dynamic extension of the two-pointer idea where the distance between pointers changes to maintain constraints like substring length or sum limits.

#881

Boats to Save People

Medium✓ Solution📹 Video
Amazon+10
#948

Bag of Tokens

Medium✓ Solution📹 Video
Amazon+3
#969

Pancake Sorting

Medium✓ Solution📹 Video
Amazon+2
Page 2 of 3

Practice by Difficulty

Start Easy, progress to Hard.

Related Topics

Frequently appear alongside Two Pointers.

FAQ

Common questions about Two Pointers.

How many Two Pointers problems should I solve?

Most candidates become comfortable with the technique after solving around 30–60 problems. Start with basic pair-search and duplicate-removal questions, then move to harder problems like 3Sum, trapping water variants, and substring constraints.

What are the most common Two Pointers patterns?

The main patterns include opposite-direction pointers, fast and slow pointers, window expansion and contraction, partitioning arrays, and in-place deduplication. Recognizing which pattern applies to a problem is the key to solving it efficiently.

When should you use the Two Pointers technique?

Use Two Pointers when working with sequential data structures like arrays or strings where elements can be scanned linearly. It is especially effective when the input is sorted, when searching for pairs or ranges, or when maintaining a dynamic window of elements.

What is the best way to learn Two Pointers in DSA?

Begin with sorted-array pair problems to understand pointer movement. Then practice fast–slow pointer problems and transition to sliding window variants. Consistent practice across 30+ questions helps build strong pattern recognition.

What are the best Two Pointers problems for interviews?

Classic interview problems include Two Sum in a sorted array, Container With Most Water, 3Sum, Remove Duplicates from Sorted Array, and Valid Palindrome. These questions test common patterns such as opposite-direction pointers and fast–slow pointers. Practicing 20–40 variations usually helps candidates recognize patterns quickly during interviews.

Is the Two Pointers technique important for FAANG interviews?

Yes. Two Pointers is a common interview pattern at companies like Amazon, Google, Meta, and Microsoft. It frequently appears in array and string problems because it demonstrates the ability to reduce time complexity from quadratic to linear.