1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-10 18:48:13 +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 Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<p>请你编写一段代码实现一个数组方法,使任何数组都可以调用 <code>array.last()</code> 方法,这个方法将返回数组最后一个元素。如果数组中没有元素,则返回&nbsp;<code>-1</code>&nbsp;</p>
<p>你可以假设数组是 <code>JSON.parse</code> 的输出结果。</p>
<p>&nbsp;</p>
<p><strong>示例 1 </strong></p>
<pre>
<b>输入:</b>nums = [null, {}, 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>arr</code> 是一个有效的 JSON 数组</li>
<li><code>0 &lt;= arr.length &lt;= 1000</code></li>
</ul>