1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-25 17:50:26 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/识别数组中的最大异常值 [identify-the-largest-outlier-in-an-array].html
2024-12-20 00:35:26 +08:00

56 lines
2.2 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<p>给你一个整数数组 <code>nums</code>。该数组包含 <code>n</code> 个元素,其中&nbsp;<strong>恰好&nbsp;</strong><code>n - 2</code> 个元素是&nbsp;<strong>特殊数字&nbsp;</strong>。剩下的&nbsp;<strong>两个&nbsp;</strong>元素中,一个是所有&nbsp;<strong>特殊数字&nbsp;</strong><strong></strong> ,另一个是&nbsp;<strong>异常值&nbsp;</strong></p>
<p><strong>异常值</strong> 的定义是:既不是原始特殊数字之一,也不是所有特殊数字的和。</p>
<p><strong>注意</strong>,特殊数字、和 以及 异常值 的下标必须&nbsp;<strong>不同&nbsp;</strong>,但可以共享&nbsp;<strong>相同</strong> 的值。</p>
<p>返回 <code>nums</code> 中可能的&nbsp;<strong>最大</strong><strong>异常值</strong></p>
<p>&nbsp;</p>
<p><strong class="example">示例 1</strong></p>
<div class="example-block">
<p><strong>输入:</strong> <span class="example-io">nums = [2,3,5,10]</span></p>
<p><strong>输出:</strong> <span class="example-io">10</span></p>
<p><strong>解释:</strong></p>
<p>特殊数字可以是 2 和 3因此和为 5异常值为 10。</p>
</div>
<p><strong class="example">示例 2</strong></p>
<div class="example-block">
<p><strong>输入:</strong> <span class="example-io">nums = [-2,-1,-3,-6,4]</span></p>
<p><strong>输出:</strong> <span class="example-io">4</span></p>
<p><strong>解释:</strong></p>
<p>特殊数字可以是 -2、-1 和 -3因此和为 -6异常值为 4。</p>
</div>
<p><strong class="example">示例 3</strong></p>
<div class="example-block">
<p><strong>输入:</strong> <span class="example-io">nums = [1,1,1,1,1,5,5]</span></p>
<p><strong>输出:</strong> <span class="example-io">5</span></p>
<p><strong>解释:</strong></p>
<p>特殊数字可以是 1、1、1、1 和 1因此和为 5另一个 5 为异常值。</p>
</div>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>3 &lt;= nums.length &lt;= 10<sup>5</sup></code></li>
<li><code>-1000 &lt;= nums[i] &lt;= 1000</code></li>
<li>输入保证 <code>nums</code> 中至少存在&nbsp;<strong>一个&nbsp;</strong>可能的异常值。</li>
</ul>