mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-11 02:58:13 +08:00
41 lines
1.7 KiB
HTML
41 lines
1.7 KiB
HTML
<p>给你一个下标从 <strong>0</strong> 开始的整数数组 <code>nums</code> ,同时给你一个整数 <code>key</code> ,它在 <code>nums</code> 出现过。</p>
|
||
|
||
<p><strong>统计 </strong>在 <code>nums</code> 数组中紧跟着 <code>key</code> 后面出现的不同整数 <code>target</code> 的出现次数。换言之,<code>target</code> 的出现次数为满足以下条件的 <code>i</code> 的数目:</p>
|
||
|
||
<ul>
|
||
<li><code>0 <= i <= n - 2</code></li>
|
||
<li><code>nums[i] == key</code> 且</li>
|
||
<li><code>nums[i + 1] == target</code> 。</li>
|
||
</ul>
|
||
|
||
<p>请你返回出现 <strong>最多</strong> 次数的<em> </em><code>target</code> 。测试数据保证出现次数最多的 <code>target</code> 是唯一的。</p>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>示例 1:</strong></p>
|
||
|
||
<pre><b>输入:</b>nums = [1,100,200,1,100], key = 1
|
||
<b>输出:</b>100
|
||
<b>解释:</b>对于 target = 100 ,在下标 1 和 4 处出现过 2 次,且都紧跟着 key 。
|
||
没有其他整数在 key 后面紧跟着出现,所以我们返回 100 。
|
||
</pre>
|
||
|
||
<p><strong>示例 2:</strong></p>
|
||
|
||
<pre><b>输入:</b>nums = [2,2,2,2,3], key = 2
|
||
<b>输出:</b>2
|
||
<b>解释:</b>对于 target = 2 ,在下标 1 ,2 和 3 处出现过 3 次,且都紧跟着 key 。
|
||
对于 target = 3 ,在下标 4 出出现过 1 次,且紧跟着 key 。
|
||
target = 2 是紧跟着 key 之后出现次数最多的数字,所以我们返回 2 。
|
||
</pre>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>提示:</strong></p>
|
||
|
||
<ul>
|
||
<li><code>2 <= nums.length <= 1000</code></li>
|
||
<li><code>1 <= nums[i] <= 1000</code></li>
|
||
<li>测试数据保证答案是唯一的。</li>
|
||
</ul>
|