...

/

Challenge 10: Find Two Numbers that Add Up to "Value"

Challenge 10: Find Two Numbers that Add Up to "Value"

Given an array and a “value,” find two numbers from the array that sum to “value.”

Problem statement

Implement a function int[] findSum(int[] arr, int sum, int size) which takes an array arr, a number value, size of the array as input, and returns an array of two numbers that add up to value. In case there is more than one pair in the array containing numbers that add up ...