mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-10 18:48:13 +08:00
32 lines
1.0 KiB
HTML
32 lines
1.0 KiB
HTML
<p>给你一个整数数组 <code>nums</code> ,其中总是存在 <strong>唯一的</strong> 一个最大整数 。</p>
|
||
|
||
<p>请你找出数组中的最大元素并检查它是否 <strong>至少是数组中每个其他数字的两倍</strong> 。如果是,则返回 <strong>最大元素的下标</strong> ,否则返回 <code>-1</code> 。</p>
|
||
|
||
<p> </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> </p>
|
||
|
||
<p><strong>提示:</strong></p>
|
||
|
||
<ul>
|
||
<li><code>2 <= nums.length <= 50</code></li>
|
||
<li><code>0 <= nums[i] <= 100</code></li>
|
||
<li><code>nums</code> 中的最大元素是唯一的</li>
|
||
</ul>
|