Problem · Sorting
Get Computational Equivalents
Learn this problemProblem statement
Developers at Amazon are building a multi-process analysis tool to analyze the computational intensity of the processes. There are n processes and the ithprocess needs process[i] computation resources for completion.
Two processes are considered to be computationally the same if their resource requirements differ by at most m.
Given the array process and an integer m, find the number of pairs of processes that are computationally the same.
Function
getComputationalEquivalents(process: int[], m: int) → int
Complete the function getComputationalEquivalents in the editor.
getComputationalEquivalents takes the following arguments:
int process[n]: the computational resource requirement of the processesint m: the threshold for being computationally the same
Examples
Example 1
process = [7, 10, 13, 11]m = 3return = 4
Hence, the answer is 4 :)