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

29 lines
789 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>
<p>&nbsp;</p>
<p><strong>示例 1 </strong></p>
<pre>
<b>输入:</b>nums = [1,2,3]
<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>
<li><code>0 &lt;= arr.length &lt;= 1000</code></li>
<li><code>0 &lt;= arr[i] &lt;= 1000</code></li>
</ul>