1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-27 02:30:28 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/删除一个元素使数组严格递增 [remove-one-element-to-make-the-array-strictly-increasing].html

49 lines
1.8 KiB
HTML
Raw Normal View History

2022-03-27 20:45:09 +08:00
<p>给你一个下标从 <strong>0</strong> 开始的整数数组 <code>nums</code> ,如果 <strong>恰好</strong> 删除 <strong>一个</strong> 元素后,数组 <strong>严格递增</strong> ,那么请你返回 <code>true</code> ,否则返回 <code>false</code> 。如果数组本身已经是严格递增的,请你也返回 <code>true</code> 。</p>
<p>数组 <code>nums</code> 是 <strong>严格递增</strong> 的定义为:对于任意下标的 <code>1 &lt;= i &lt; nums.length</code> 都满足 <code>nums[i - 1] &lt; nums[i]</code> 。</p>
<p> </p>
<p><strong>示例 1</strong></p>
<pre><b>输入:</b>nums = [1,2,<strong>10</strong>,5,7]
<b>输出:</b>true
<b>解释:</b>从 nums 中删除下标 2 处的 10 ,得到 [1,2,5,7] 。
[1,2,5,7] 是严格递增的,所以返回 true 。
</pre>
<p><strong>示例 2</strong></p>
<pre><b>输入:</b>nums = [2,3,1,2]
<b>输出:</b>false
<b>解释:</b>
[3,1,2] 是删除下标 0 处元素后得到的结果。
[2,1,2] 是删除下标 1 处元素后得到的结果。
[2,3,2] 是删除下标 2 处元素后得到的结果。
[2,3,1] 是删除下标 3 处元素后得到的结果。
没有任何结果数组是严格递增的,所以返回 false 。</pre>
<p><strong>示例 3</strong></p>
<pre><b>输入:</b>nums = [1,1,1]
<b>输出:</b>false
<b>解释:</b>删除任意元素后的结果都是 [1,1] 。
[1,1] 不是严格递增的,所以返回 false 。
</pre>
<p><strong>示例 4</strong></p>
<pre><b>输入:</b>nums = [1,2,3]
<b>输出:</b>true
<b>解释:</b>[1,2,3] 已经是严格递增的,所以返回 true 。
</pre>
<p> </p>
<p><strong>提示:</strong></p>
<ul>
<li><code>2 &lt;= nums.length &lt;= 1000</code></li>
<li><code>1 &lt;= nums[i] &lt;= 1000</code></li>
</ul>