[LeetCode] 3Sum Smaller

1 · · Feb. 19, 2022, 10:38 a.m.
259. 3Sum Smaller Given an array of n integers nums and an integer target, find the number of index triplets i, j, k with 0 <= i < j < k < n that satisfy the condition nums[i] + nums[j] + nums[k] < target. ...