3Sum Closest

Medium

Topics
ArrayTwo PointersSorting

Given an array nums and a value target, find three integers whose sum is closest to target and return that sum.

Example 1

Input:  nums = [-1,2,1,-4], target = 1
Output: 2

Example 2

Input:  nums = [0,0,0], target = 1
Output: 0

Constraints

  • 3 <= nums.length <= 500
  • -1000 <= nums[i] <= 1000
  • -10^4 <= target <= 10^4
Run ⌘' · Submit ⌘⏎