For nums = [2, 7, 11, 15] and target = 9, what should find_pair return?
nums = [2, 7, 11, 15]
target = 9
find_pair
(0, 1)
(1, 2)
(2, 7)
()