mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-11 02:58:13 +08:00
33 lines
814 B
HTML
33 lines
814 B
HTML
<p>给你个整数数组 <code>arr</code>,其中每个元素都 <strong>不相同</strong>。</p>
|
||
|
||
<p>请你找到所有具有最小绝对差的元素对,并且按升序的顺序返回。</p>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>示例 1:</strong></p>
|
||
|
||
<pre><strong>输入:</strong>arr = [4,2,1,3]
|
||
<strong>输出:</strong>[[1,2],[2,3],[3,4]]
|
||
</pre>
|
||
|
||
<p><strong>示例 2:</strong></p>
|
||
|
||
<pre><strong>输入:</strong>arr = [1,3,6,10,15]
|
||
<strong>输出:</strong>[[1,3]]
|
||
</pre>
|
||
|
||
<p><strong>示例 3:</strong></p>
|
||
|
||
<pre><strong>输入:</strong>arr = [3,8,-10,23,19,-4,-14,27]
|
||
<strong>输出:</strong>[[-14,-10],[19,23],[23,27]]
|
||
</pre>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>提示:</strong></p>
|
||
|
||
<ul>
|
||
<li><code>2 <= arr.length <= 10^5</code></li>
|
||
<li><code>-10^6 <= arr[i] <= 10^6</code></li>
|
||
</ul>
|