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

Three Sum Closest - Leet Code Solution

TL;DR

Sort the array, then for each element use two pointers (left/right) to find the triplet sum closest to target. Track minimum absolute difference. O(n²).

Three Sum Closest - Leet Code Solution

Problem Statement

Given an array nums of n integers and an integer target, find three integers in nums such that the sum is closest to target. Return the sum of the three integers. You may assume that each input would have exactly one solution.

Example:

Given array nums = [-1, 2, 1, -4], and target = 1.
The sum that is closest to the target is 2. (-1 + 2 + 1 = 2).

Solution-1

The obvious brute force algorithm. The key is to get the closest. You need to compare

Math.abs(target - calculated_sum)

Solution-2

Lets look at the optimized solution.

  1. Sort the array
  2. Have left and right pointers.
  3. Keep calculating sum of three values.
  4. Compare absolute value of difference between targetSum and calculated sum.
  5. If sum is lesser, need to move left pointer
  6. else move right pointer.
public int threeSumClosest(int[] nums, int target) {
	Arrays.sort(nums);
	
	int l = nums.length;
	int minDiff = Integer.MAX_VALUE;
	int result = 0;
	for (int i=0; i<l; i++) {
		int j=i+1;
		int k=l-1;
		
		while (j < k) {
			int sum = nums[i] + nums[j] + nums[k];
			if (sum == target) return sum;
			else if (sum < target) j++;
			else k--;
			
			if (Math.abs(target - sum) < minDiff) {
				minDiff = Math.abs(target - sum);
				result = sum;
			}
		}
	}
	
	return result;
}

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…