Given an array and a value, how can you determine if there are two elements in the array sum up to the value?
Sigiloso
At first, nested loop - too easy Then asked to upgrade the solution - use of dictionary would solve the problem - everytime we scan an element we store in dictionary the element and its complement value to the given sum