
The distance of a pair of integers a and b is defined as the absolute difference between a and b .
Given an integer array nums and an integer k , return the k ^th smallest distance among all the pairs nums[i] and nums[j] where 0 <= i < j < nums.length .
n == nums.length2 <= n <= 10 ^40 <= nums[i] <= 10 ^61 <= k <= n * (n - 1) / 2