Challenge: Find Two Numbers that Add up to "s"
Given an array and a number 's', find two numbers from an array that sum to 's'. Implement your solution in C++ and see if your output matches with the correct output.
We'll cover the following...
Problem Statement
Implement a function that takes an array arr, a number s ...
Ask