...
/Challenge 3: Find Two Numbers that Add Up to Given Value
Challenge 3: Find Two Numbers that Add Up to Given Value
Given an array and a number "value", find two numbers from an array that sum to "value".
We'll cover the following...
Problem statement
Implement a function findSum(int arr[], int value, int size)
, which takes an ...