Array Prototype Last — LeetCode 2619 Python Solution

EasyJavaScript
Problem
#2619
Reading time
2 min

The problem

Write code that enhances all arrays such that you can call the array.last() method on any array and it will return the last element. If there are no elements in the array, it should return -1.

Example

Input
nums = [null, {}, 3]
Output
3
Explanation
Calling nums.last() should return the last element: 3.

Complexity

MeasureComplexity
TimeO(n)
SpaceO(1) to O(n) auxiliary

Related problems

Frequently asked questions

How hard is LeetCode 2619. Array Prototype Last?
LeetCode 2619. Array Prototype Last is rated Easy on LeetCode.
What topics does LeetCode 2619. Array Prototype Last cover?
LeetCode 2619. Array Prototype Last is tagged JavaScript on LeetCode.

Stuck on problems like this in a live interview?

Stealth Interview is a desktop app for macOS and Windows. It reads the problem off your screen and returns a working solution with a step-by-step explanation and its time and space complexity — invisible to screen sharing.

Get Stealth Interview