...
/Challenge 5: Find Two Pairs in an Array with an Equal Sum
Challenge 5: Find Two Pairs in an Array with an Equal Sum
If you are given an array, can you find two pairs such that their sum is equal?
We'll cover the following...
Problem statement
In this problem, you have to implement the string findPair(int[] arr, int size)
function, which will find two pairs [a, b]
and [c, d]
...