Challenge: Find Two Numbers That Add Up to "n"
Let's write a function to find two numbers that add up to n.
We'll cover the following...
Problem statement
In this problem, you have to implement the find_sum(lst, n)
function which will take a list lst
and number n
as inputs and return two numbers from the list that add up to ...