2824. 统计和小于目标的下标对数目
2824. 统计和小于目标的下标对数目
- 难度:
easy
- 原始链接: https://leetcode.cn/problems/count-pairs-whose-sum-is-less-than-target
- 标签:
排序
,二分
解法一: 枚举
1 | func countPairs(nums []int, target int) int { |
解法二: 排序, 二分
1 | func countPairs(nums []int, target int) int { |