Problem · Array
Find Number of Perfect Pairs
Learn this problemProblem statement
Given an array, find the number of perfec pairs.
(x, y) is a perfect pair if satisfies:
Function
findNumberOfPerfectPairs(arr: int[]) → intExamples
Example 1
arr = [2, 5, -3]return = 2out of (2, 5) , (5, -3) and (2, -3), (2, -3) and (5, -3) satisfy both the conditions. Therefore, the output is 2.