nums = [2, 7, 11, 15]이고 target = 9일 때, find_pair는 무엇을 반환해야 하나요?
nums = [2, 7, 11, 15]
target = 9
find_pair
(0, 1)
()
(2, 7)
(1, 2)