Was soll find_pair für nums = [2, 7, 11, 15] und target = 9 zurückgeben?
find_pair
nums = [2, 7, 11, 15]
target = 9
()
(0, 1)
(1, 2)
(2, 7)