Given a list of numbers and a number K, the mini project will determine
whether any two numbers from the list add up
to K.
Example: given [10, 15, 3, 7] and K of 17, return
true since 10 + 7 is 17.
The basic challenge is to write a program that
processes a user provided array of [10, 15, 3, 7] and
allows the user to enter a value for K before
running the algorithm and returning true or
false.