Takes in an array and a number and returns true if any of the pairs adds up to the number. ``` Input: ([1, 1, 2, 4, 5], 3) Output: true ```