nums = [2, 7, 11, 15]、target = 9 のとき、find_pair は何を返すべきですか?
nums = [2, 7, 11, 15]
target = 9
find_pair
(0, 1)
()
(1, 2)
(2, 7)