1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-27 10:40:26 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/数组原型对象的最后一个元素 [array-prototype-last].html

31 lines
882 B
HTML
Raw Normal View History

2023-04-23 22:41:08 +08:00
<p>请你编写一段代码实现一个数组方法,使任何数组都可以调用 <code>array.last()</code> 方法,这个方法将返回数组最后一个元素。如果数组中没有元素,则返回&nbsp;<code>-1</code>&nbsp;</p>
2023-12-09 18:42:21 +08:00
<p>你可以假设数组是 <code>JSON.parse</code> 的输出结果。</p>
2023-04-23 22:41:08 +08:00
<p>&nbsp;</p>
<p><strong>示例 1 </strong></p>
<pre>
2023-12-09 18:42:21 +08:00
<b>输入:</b>nums = [null, {}, 3]
2023-04-23 22:41:08 +08:00
<b>输出:</b>3
<b>解释</b>:调用 nums.last() 后返回最后一个元素: 3。
</pre>
<p><strong>示例 2 </strong></p>
<pre>
<b>输入:</b>nums = []
<b>输出:</b>-1
<strong>解释:</strong>因为此数组没有元素,所以应该返回 -1。
</pre>
<p>&nbsp;</p>
<p><b>提示:</b></p>
<ul>
2023-12-09 18:42:21 +08:00
<li><code>arr</code> 是一个有效的 JSON 数组</li>
2023-04-23 22:41:08 +08:00
<li><code>0 &lt;= arr.length &lt;= 1000</code></li>
</ul>