Write a function that takes as parameters a non-empty slice of integers and an integer representing a target sum. Your task is to return the pair of numbers within the input slice that add up to the target sum given. If no numbers in the input slice add up to the given target sum, return an empty slice. You may assume that there will be no more than one pair of numbers from the input slice that add up to the target sum.
Hint: There are several ways to do this which vary in efficiency. First focus on solving it and only then on optimizing it.
You may use the test below to exercise your solution.