Skip to content

Commit e6f2771

Browse files
committed
feat(leetcode): add No.2824
1 parent fc5b174 commit e6f2771

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
// https://leetcode.com/problems/count-pairs-whose-sum-is-less-than-target/
2+
// algorithms
3+
// Easy (86.7%)
4+
// Total Accepted: 68.9K
5+
// Total Submissions: 79.5K
6+
7+
8+
class Solution {
9+
10+
public int countPairs(List<Integer> nums, int target) {
11+
int len = nums.size();
12+
if (len < 2) {
13+
return 0;
14+
}
15+
16+
if (len == 2) {
17+
return nums.get(0) + nums.get(1) < target ? 1 : 0;
18+
}
19+
20+
int res = 0;
21+
for (int i = 0; i < len - 1; i++) {
22+
for (int j = i + 1; j < len; j++) {
23+
if (nums.get(i) + nums.get(j) < target) {
24+
res++;
25+
}
26+
}
27+
}
28+
29+
return res;
30+
}
31+
32+
}

0 commit comments

Comments
 (0)