Hacktoberfest-2021-Data-Structures-and-Algorithms
Hacktoberfest-2021-Data-Structures-and-Algorithms copied to clipboard
Added checkGoodPairsInArray.js
Given an array A and a integer B. A pair(i,j) in the array is a good pair if i!=j and (A[i]+A[j]==B). Check if any good pair exist or not.