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
.
You may assume the array is the output of JSON.parse
.
Examples
Example 1
|
|
Example 2
|
|
Constraints
arr
is a valid JSON array0 <= arr.length <= 1000
Solution
Method 1 – Polyfill Using Prototype
Intuition
Add a last()
method to all arrays so that it returns the last element, or -1 if the array is empty.
Approach
Define the method on Array.prototype
. If the array is empty, return -1; otherwise, return the last element.
Code
|
|
Complexity
- ⏰ Time complexity:
O(1)
- 🧺 Space complexity:
O(1)