Intructions:
Given a list of numbers and a number x, return whether any two numbers from the list add up to x. For example, given [10, 15, 3, 7] and x of 17, return true since 10 + 7 is equal to 17.
---
Given a list of numbers and a number x, return whether any two numbers from the list add up to x. For example, given [10, 15, 3, 7] and x of 17, return true since 10 + 7 is equal to 17.