Para nums = [2, 7, 11, 15] e target = 9, o que find_pair deve retornar?
nums = [2, 7, 11, 15]
target = 9
find_pair
(2, 7)
(1, 2)
()
(0, 1)