coding-interview|September 13, 2019|2 min read

Three Sum - Leet Code Solution

TL;DR

Sort + two pointers — fix one element, use left/right pointers for the other two. Skip duplicates at both levels to avoid repeated triplets. O(n²).

Three Sum - Leet Code Solution

Problem Statement

Given an array nums of n integers, are there elements a, b, c in nums such that a + b + c = 0? Find all unique triplets in the array which gives the sum of zero.

Note: The solution set must not contain duplicate triplets.

Example:
Given array nums = [-1, 0, 1, 2, -1, -4],

A solution set is:
[
  [-1, 0, 1],
  [-1, -1, 2]
]

Solution-1

A simple brute force is the start. But, it is so simple. Lets not discuss it. You just need to make sure that result must have unique entries

Solution-2

Like, in two-sum problem. We used a HashSet. We can use it here as well. Again, to maintain unique elements, it added complexity.

public List<List<Integer>> threeSum(int[] nums) {
	Set<List<Integer>> result = new HashSet();
	int l = nums.length;
	for (int i=0; i<l; i++) {
		Set<Integer> vals = new HashSet();
		for (int j=i+1; j<l; j++) {
			if (j == i) continue;

			int requiredNum = 0 - (nums[i] + nums[j]);
			if (vals.contains(requiredNum)) {
				List<Integer> iRes = new ArrayList();
				iRes.add(requiredNum);
				iRes.add(nums[j]);
				iRes.add(nums[i]);
				
				Collections.sort(iRes);
				result.add(iRes);
			}

			if (!vals.contains(nums[j])) {
				vals.add(nums[j]);
			}
		}
	}

	List<List<Integer>> r = new ArrayList(result);
	return r;
}

Solution-3

Lets look at most optimized one.

  • Sort the array
  • Now, in a loop, start from left and right pointer.
  • Keep track of sum. If we found the sum, add it. And, we need to move left and right pointer. One case is where even after moving left and right pointer, the value can be duplicate. Since, we need to avoid duplicates. We need to add a condition here to keep moving untill found a unique element.
  • There is a corner case, where handling of duplicate elements has to be handled in outer loop as well. (See line ahead of for loop)
public List<List<Integer>> threeSum_2(int[] nums) {
	Arrays.sort(nums);
	int len = nums.length;
	
	List<List<Integer>> res = new ArrayList<>();
	for (int i=0; i<len; i++) {
		//to avoid processing duplicate values
		if (i > 0 && nums[i-1] == nums[i]) continue;
		
		int l = i+1;
		int r = len-1;
		
		while (l < r) {
			int s = nums[i] + nums[l] + nums[r];
			if (s == 0) {
				List<Integer> ir = new ArrayList<>();
				ir.add(nums[i]); ir.add(nums[l]); ir.add(nums[r]);
				res.add(ir);
				
				l++;
				r--;
				
				//to move over duplicate values
				while (l < r && nums[l-1] == nums[l]) l++;
				while (l < r && nums[r+1] == nums[r]) r--;
			}
			
			else if (s < 0) {
				l++;
			}
			else {
				r--;
			}
		}
	}
	return res;
}

Related Posts

Leetcode Solution - Best Time to Buy and Sell Stock

Leetcode Solution - Best Time to Buy and Sell Stock

Problem Statement You are given an array prices where prices[i] is the price of…

Binary Tree - Level Order Traversal

Binary Tree - Level Order Traversal

Problem Statement Given a Binary tree, print out nodes in level order traversal…

Four Sum - Leet Code Solution

Four Sum - Leet Code Solution

Problem Statement Given an array nums of n integers and an integer target, are…

Leetcode - Rearrange Spaces Between Words

Leetcode - Rearrange Spaces Between Words

Problem Statement You are given a string text of words that are placed among…

Leetcode - Maximum Non Negative Product in a Matrix

Leetcode - Maximum Non Negative Product in a Matrix

Problem Statement You are given a rows x cols matrix grid. Initially, you are…

Leetcode - Split a String Into the Max Number of Unique Substrings

Leetcode - Split a String Into the Max Number of Unique Substrings

Problem Statement Given a string s, return the maximum number of unique…

Latest Posts

Claude Code Skills — Build a Better Engineering Workflow with AI-Powered Code Reviews, Security Scans, and More

Claude Code Skills — Build a Better Engineering Workflow with AI-Powered Code Reviews, Security Scans, and More

Most developers use Claude Code like a search engine — ask a question, get an…

Building an AI Voicebot for Visitor Check-In — A Practical Guide to Handling the Messy Parts

Building an AI Voicebot for Visitor Check-In — A Practical Guide to Handling the Messy Parts

Every office lobby has the same problem: a visitor walks in, nobody’s at the…

Server Security Best Practices — Complete Hardening Guide for Production Systems

Server Security Best Practices — Complete Hardening Guide for Production Systems

Every breach post-mortem tells the same story: an unpatched service, a…

Staff Engineer Study Plan for MAANG Interviews — The Complete 12-Week Roadmap

Staff Engineer Study Plan for MAANG Interviews — The Complete 12-Week Roadmap

If you’re a Senior Engineer (L5) preparing for Staff (L6+) roles at MAANG…

XSS and CSRF Explained — The Complete Guide with Real Attack Examples and Defenses

XSS and CSRF Explained — The Complete Guide with Real Attack Examples and Defenses

XSS and CSRF have been in the OWASP Top 10 for over a decade. They’re among the…

OWASP Top 10 (2021) — Every Vulnerability Explained with Code

OWASP Top 10 (2021) — Every Vulnerability Explained with Code

The OWASP Top 10 is the industry standard for web application security risks. If…