forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_259.java
33 lines (30 loc) · 1.01 KB
/
_259.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
package com.fishercoder.solutions;
import java.util.Arrays;
public class _259 {
public static class Solution1 {
/**
* Basically, very similar to 3Sum, but the key is that you'll have to add result by (right-left), not just increment result by 1!
*/
public int threeSumSmaller(int[] nums, int target) {
if (nums == null || nums.length == 0) {
return 0;
}
int result = 0;
Arrays.sort(nums);
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) {
result += right - left;//this line is key!
left++;
} else {
right--;
}
}
}
return result;
}
}
}