Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 433 Bytes

README.md

File metadata and controls

17 lines (11 loc) · 433 Bytes

168.3Sum Closest

Description

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

Example

Input: [-1 2 1 -4], 1
Output: 2
The sum that is closest to the target is 2. (-1 + 2 + 1 = 2).

From

LeetCode