LeetCode --- 1200. Minimum Absolute Difference 解题报告
Posted 杨鑫newlfe
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode --- 1200. Minimum Absolute Difference 解题报告相关的知识,希望对你有一定的参考价值。
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 fromarr
a < b
b - a
equals to the minimum absolute difference of any two elements inarr
Example 1:
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.
Example 2:
Input: arr = [1,3,6,10,15] Output: [[1,3]]
Example 3:
Input: arr = [3,8,-10,23,19,-4,-14,27] Output:<
以上是关于LeetCode --- 1200. Minimum Absolute Difference 解题报告的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode --- 1200. Minimum Absolute Difference 解题报告
leetcode1200. Minimum Absolute Difference
LeetCode --- 1200. Minimum Absolute Difference 解题报告
LeetCode 1200 最小绝对差[排序] HERODING的LeetCode之路