3Sum
Given an integer array, return all unique triplets of numbers from the array that add up to zero. The same set of three numbers cannot appear more than once in your answer, even if the numbers occur at different positions in the input.
This is a premium problem.
Unlock 3Sum with the full guided learning path and every other premium problem.
Problem
Given an integer array nums, return all the triplets [nums[i], nums[j], nums[k]] such that i != j, i != k, and j != k, and nums[i] + nums[j] + nums[k] == 0. Notice that the solution set must not contain duplicate triplets.
Input
An integer array `nums` that may contain duplicates and negative numbers.
Output
A list of all unique triplets [nums[i], nums[j], nums[k]] such that i, j, k are distinct indices and nums[i] + nums[j] + nums[k] == 0. The triplets may be returned in any order.
Examples
Input: nums = [-1, 0, 1, 2, -1, -4]
Output: [[-1, -1, 2], [-1, 0, 1]]
(-1) + (-1) + 2 = 0 and (-1) + 0 + 1 = 0. The triplet [-1, 0, 1] uses two different -1 values in the input but is still counted once.
Input: nums = [0, 1, 1]
Output: []
No three numbers sum to 0.
Input: nums = [0, 0, 0]
Output: [[0, 0, 0]]
0 + 0 + 0 = 0. Only one unique triplet.
The brute-force approach
Try all combinations of three indices (i, j, k). For each, check whether the three values sum to zero. Collect unique triplets using a set.
result = set()
for i in range(len(nums)):
for j in range(i + 1, len(nums)):
for k in range(j + 1, len(nums)): # ← triple nested loop
if nums[i] + nums[j] + nums[k] == 0:
triplet = tuple(sorted([nums[i], nums[j], nums[k]]))
result.add(triplet)
return [list(t) for t in result]Three nested loops make this O(n³). For an array of 1000 elements, that's roughly a billion iterations. Worse, the set-based deduplication adds overhead. The fix is to sort the array first, which gives you a structure you can exploit to find pairs in O(n) per fixed element rather than O(n²).
Spotting the pattern
This is a Two Pointers problem. The key question to ask yourself:
Once I fix one number and need two others that complete the sum, how do I find all valid pairs efficiently?
Answering that is where it clicks, and it's exactly what the guided walkthrough below builds with you: the pattern reasoning, a progressive hint ladder that never spoils the answer, a row-by-row dry run, the optimized solution, and an in-browser editor to run your code against real test cases.
Unlock the full guided solution
The Two Pointers walkthrough for 3Sum: the progressive hint ladder, a row-by-row dry run, the optimized code, and an in-browser runner, plus the full guided learning path and every other premium problem.
Already finished Big-O and Hash Maps free? This picks up right where the path leads: same format, harder patterns, the ones that show up in every FAANG-style screen.
What you get
- ✓The full guided learning path: concept lessons, drills, graded tests, and cold-read capstones for every pattern
- ✓Stop going blank on algorithm problems. The hint ladder walks you to the answer without spoiling it.
- ✓Actually internalize the trace: dry runs walk state row by row so it clicks before you write a line
- ✓Know when to reach for each pattern. Every problem names the trigger so you spot it next time.
- ✓Write and run JS or Python in the browser with real test cases on every problem
- ✓Access every new problem, unit, and pattern guide as they ship weekly
“This app finally made it click. I tried NeetCode, CTCI, and YouTube for years and still couldn't solve Two Sum. The beginner mental models for the patterns are genuinely so helpful. THANK YOU.”
Founding Member Deal
$29 / year
or $6 / month
LeetCode Premium is $159/year and doesn't teach you anything.
Less than one Udemy course, with guided problems instead of passive lectures.
One extra month of job searching costs more than a full year here.
Your price is locked in for life.
When the 100th founding spot closes, the price goes up for everyone who joins after. Your rate never changes, no matter how much the curriculum grows.
- ✓The full guided learning path, every unit
- ✓All 150 problems across 33 patterns, plus every new one
- ✓New problems and units weekly
- ✓Cancel anytime
Cancel anytime. Not useful within 7 days? Email for a full refund. Secured by Stripe.