Sum of Three Numbers Less than Target
Given a list of integers nums
and an integer target
, return the number of triples i < j < k
that exist such that nums[i] + nums[j] + nums[k] < target
.
Constraints
n ≤ 1,000
wheren
is the length ofnums
https://binarysearch.com/problems/Sum-of-Three-Numbers-Less-than-Target
Examples
Example 1
Input
- nums =
[-3, 5, 3, 2, 7]
- target =
9
Output
- answer =
5
Explanation
Here are the different triples’ values:
-3 + 5 + 3 = 5
-3 + 5 + 2 = 4
-3 + 3 + 2 = 2
-3 + 3 + 7 = 7
-3 + 2 + 7 = 6
Leave a comment