Search⌘ K
AI Features

Solution: Minimum Absolute Difference

C# solution for the Minimum Absolute Difference problem using the Sort and Search pattern.

Statement

Given an integer array arr, find the minimum absolute difference between any two distinct elements. Return a list of all pairs of elements that have this minimum absolute difference.

Each pair must be returned as [x, y] where x < y. The returned list of pairs must be sorted in ascending order.

Constraints:

  • 22 \leq arr.length ...