Two Sum (Pair with a Given Sum)

Write a method that checks if there is at least on pair of numbers which sum equals target.

arr=[1, 3, 4] and target=5 result is true because the pair (1,4) sums to five.