-
Notifications
You must be signed in to change notification settings - Fork 0
/
LeetCode16.java
33 lines (26 loc) · 956 Bytes
/
LeetCode16.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
import java.util.Arrays;
public class LeetCode16 {
public int threeSumClosest(int[] nums, int target) {
Arrays.sort(nums);
int result = 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 sum = nums[i] + nums[left] + nums[right];
if (sum == target) {
return target; // Found the exact match
}
if (Math.abs(sum - target) < Math.abs(result - target)) {
result = sum; // Update result if closer to target
}
if (sum < target) {
left++; // Move left pointer to increase sum
} else {
right--; // Move right pointer to decrease sum
}
}
}
return result;
}
}