-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathThreeSumClosest.java
More file actions
32 lines (27 loc) · 865 Bytes
/
Copy pathThreeSumClosest.java
File metadata and controls
32 lines (27 loc) · 865 Bytes
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
import java.util.*;
class ThreeSumClosest {
public int threeSumClosest(int[] nums, int target) {
Arrays.sort(nums);
int closestSum = nums[0]+nums[1]+nums[2];
for(int i=0;i<nums.length-2;i++){
int left = i+1;
int right = nums.length-1;
while(left<right){
int currentSum = nums[i]+nums[left]+nums[right];
if (Math.abs(currentSum-target) < Math.abs(closestSum-target)){
closestSum = currentSum;
}
if(currentSum == target){
return currentSum;
}
else if(currentSum < target){
left++;
}
else{
right --;
}
}
}
return closestSum;
}
}