we are given an array that contains n numbers. we want to determine if there are two numbers whose sum equals a given number k. for instance, if the input is 8, 4, 1, 6, and k is 10, then the answer is yes (4 and 6). a number may be used twice. do the following: