Problem · Array
Project Estimates
Learn this problemProblem statement
A number of bids are being taken for a project. Determine the number of distinct pairs of project costs where their absolute difference is some target value. Two pairs are distinct if they differ in at least one value.
Function
countPairs(n: int, projectCosts: int[], target: int) → intComplete the function countPairs in the editor.
countPairs has the following parameter(s):
int projectCosts[n]: array of integersint target: the target differenceReturns
int: the number of distinct pairs in projectCosts with an absolute difference of targetExamples
Example 1
n = 5projectCosts = [1, 5, 3, 4, 2]target = 2return = 3Count the number of pairs in projectCosts whose difference is target = 2.
The following three pairs meet the criterion: (1, 3), (5, 3), and (4, 2).
Example 2
n = 3projectCosts = [1, 3, 5]target = 2return = 2There are 2 pairs [1, 3], [3, 5] that have the target difference target = 2, therefore a value of 2 is returned.
Constraints
5 < n <= 2 * 1050 < projectCosts[i] <= 2 * 109 Each projectCosts[i] is distinct, i.e. unique within projectCosts1 <= target<= 109