Что должна вернуть find_pair для nums = [2, 7, 11, 15] и target = 9?
find_pair
nums = [2, 7, 11, 15]
target = 9
()
(0, 1)
(2, 7)
(1, 2)