mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-10 18:48:13 +08:00
49 lines
2.0 KiB
HTML
49 lines
2.0 KiB
HTML
<p>有 <code>n</code> 座山排成一列,每座山都有一个高度。给你一个整数数组 <code>height</code> ,其中 <code>height[i]</code> 表示第 <code>i</code> 座山的高度,再给你一个整数 <code>threshold</code> 。</p>
|
||
|
||
<p>对于下标不为 <code>0</code> 的一座山,如果它左侧相邻的山的高度 <strong>严格</strong><strong>大于</strong> <code>threshold</code> ,那么我们称它是 <strong>稳定</strong> 的。我们定义下标为 <code>0</code> 的山 <strong>不是</strong> 稳定的。</p>
|
||
|
||
<p>请你返回一个数组,包含所有 <strong>稳定</strong> 山的下标,你可以以 <strong>任意</strong> 顺序返回下标数组。</p>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong class="example">示例 1:</strong></p>
|
||
|
||
<div class="example-block">
|
||
<p><span class="example-io"><b>输入:</b>height = [1,2,3,4,5], threshold = 2</span></p>
|
||
|
||
<p><span class="example-io"><b>输出:</b>[3,4]</span></p>
|
||
|
||
<p><strong>解释:</strong></p>
|
||
|
||
<ul>
|
||
<li>下标为 3 的山是稳定的,因为 <code>height[2] == 3</code> 大于 <code>threshold == 2</code> 。</li>
|
||
<li>下标为 4 的山是稳定的,因为 <code>height[3] == 4</code> 大于 <code>threshold == 2</code>.</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<p><strong class="example">示例 2:</strong></p>
|
||
|
||
<div class="example-block">
|
||
<p><span class="example-io"><b>输入:</b>height = [10,1,10,1,10], threshold = 3</span></p>
|
||
|
||
<p><span class="example-io"><b>输出:</b>[1,3]</span></p>
|
||
</div>
|
||
|
||
<p><strong class="example">示例 3:</strong></p>
|
||
|
||
<div class="example-block">
|
||
<p><span class="example-io"><b>输入:</b>height = [10,1,10,1,10], threshold = 10</span></p>
|
||
|
||
<p><span class="example-io"><b>输出:</b>[]</span></p>
|
||
</div>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>提示:</strong></p>
|
||
|
||
<ul>
|
||
<li><code>2 <= n == height.length <= 100</code></li>
|
||
<li><code>1 <= height[i] <= 100</code></li>
|
||
<li><code>1 <= threshold <= 100</code></li>
|
||
</ul>
|