Stealth Interview
  • Features
  • Pricing
  • Blog
  • Login
  • Sign up

Leetcode #1200: Minimum Absolute Difference

In this guide, we solve Leetcode #1200 Minimum Absolute Difference in Python and focus on the core idea that makes the solution efficient.

You will see the intuition, the step-by-step method, and a clean Python implementation you can use in interviews.

Leetcode

Problem Statement

Given an array of distinct integers arr, find all pairs of elements with the minimum absolute difference of any two elements. Return a list of pairs in ascending order(with respect to pairs), each pair [a, b] follows a, b are from arr a < b b - a equals to the minimum absolute difference of any two elements in arr Example 1: Input: arr = [4,2,1,3] Output: [[1,2],[2,3],[3,4]] Explanation: The minimum absolute difference is 1.

Quick Facts

  • Difficulty: Easy
  • Premium: No
  • Tags: Array, Sorting

Intuition

Sorting reveals structure that is hard to see in the original order.

Once sorted, a linear scan is usually enough to compute the answer.

Approach

Sort the data and sweep through it while maintaining a small state.

This keeps the logic straightforward and reliable.

Steps:

  • Sort the data.
  • Scan in order while maintaining state.
  • Update the best answer.

Example

Input: arr = [4,2,1,3] Output: [[1,2],[2,3],[3,4]] Explanation: The minimum absolute difference is 1. List all pairs with difference equal to 1 in ascending order.

Python Solution

class Solution: def minimumAbsDifference(self, arr: List[int]) -> List[List[int]]: arr.sort() mi = min(b - a for a, b in pairwise(arr)) return [[a, b] for a, b in pairwise(arr) if b - a == mi]

Complexity

The time complexity is O(n×log⁡n)O(n \times \log n)O(n×logn), and the space complexity is O(log⁡n)O(\log n)O(logn). The space complexity is O(log⁡n)O(\log n)O(logn).

Edge Cases and Pitfalls

Watch for boundary values, empty inputs, and duplicate values where applicable. If the problem involves ordering or constraints, confirm the invariant is preserved at every step.

Summary

This Python solution focuses on the essential structure of the problem and keeps the implementation interview-friendly while meeting the constraints.


Ace your next coding interview

We're here to help you ace your next coding interview.

Subscribe
Stealth Interview
© 2026 Stealth Interview®Stealth Interview is a registered trademark. All rights reserved.
Product
  • Blog
  • Pricing
Company
  • Terms of Service
  • Privacy Policy