1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-11 02:58:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/至少是其他数字两倍的最大数 [largest-number-at-least-twice-of-others].html

32 lines
1.0 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> ,其中总是存在 <strong>唯一的</strong> 一个最大整数 。</p>
<p>请你找出数组中的最大元素并检查它是否 <strong>至少是数组中每个其他数字的两倍</strong> 。如果是,则返回 <strong>最大元素的下标</strong> ,否则返回 <code>-1</code></p>
<p>&nbsp;</p>
<p><strong>示例 1</strong></p>
<pre>
<strong>输入:</strong>nums = [3,6,1,0]
<strong>输出:</strong>1
<strong>解释:</strong>6 是最大的整数对于数组中的其他整数6 至少是数组中其他元素的两倍。6 的下标是 1 ,所以返回 1 。
</pre>
<p><strong>示例 2</strong></p>
<pre>
<strong>输入:</strong>nums = [1,2,3,4]
<strong>输出:</strong>-1
<strong>解释:</strong>4 没有超过 3 的两倍大,所以返回 -1 。
</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>2 &lt;= nums.length &lt;= 50</code></li>
<li><code>0 &lt;= nums[i] &lt;= 100</code></li>
<li><code>nums</code> 中的最大元素是唯一的</li>
</ul>