对于 nums = [2, 7, 11, 15] 和 target = 9,find_pair 应返回什么?
nums = [2, 7, 11, 15]
target = 9
find_pair
()
(0, 1)
(2, 7)
(1, 2)