Given an int array and an int X, find out if two elements sum up to X
Sigiloso
First sort the array find idx where array[i] > X; if (idx == 0) then quit. march through each element until idx { diff = X - array[i] if (diff >array[i]) then check right elements until idx else check for elements on left until i. }