-
Notifications
You must be signed in to change notification settings - Fork 0
/
Solution.java
40 lines (38 loc) · 1.23 KB
/
Solution.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package Array.No_16_3Sum_Closest;
import java.util.Arrays;
/**
* FileName: Solution
* Author: EdisonLi的Windows
* Date: 2019/6/13 17:08
* Description:
* 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.
* <p>
* Example:
* <p>
* Given array nums = [-1, 2, 1, -4], and target = 1.
* <p>
* The sum that is closest to the target is 2. (-1 + 2 + 1 = 2).
* <p>
* Difficulty: Medium
*/
public class Solution {
public int threeSumClosest(int[] num, int target) {
int result = num[0] + num[1] + num[num.length - 1];
Arrays.sort(num);
for (int i = 0; i < num.length - 2; i++) {
int start = i + 1, end = num.length - 1;
while (start < end) {
int sum = num[i] + num[start] + num[end];
if (sum > target) {
end--;
} else {
start++;
}
if (Math.abs(sum - target) < Math.abs(result - target)) {
result = sum;
}
}
}
return result;
}
}