2616. Minimize the Maximum Difference of Pairs
You are given a 0-indexed integer array
numsand an integerp. Findppairs of indices ofnumssuch that the maximum difference amongst all the pairs is minimized. Also, ensure no index appears more than once amongst theppairs.Note that for a pair of elements at the index
iandj, the difference of this pair is|nums[i] - nums[j]|, where|x|represents the absolute value ofx.Return the minimum maximum difference among all
ppairs.
1 | class Solution { |