Select your answers. Once selected, you cannot change them.
Given an array of integers, find the pair of elements that has the minimum absolute difference between them. Return the pair.
Input: [3, 8, 15, 17] Output: (15, 17)
Write your solution below: