CJCoding With Joseph
15per day

Return the Last Item from a Generic ArrayList

Complete the generic method getLastItem that takes an ArrayList<T> and returns the last element. You may assume the list is not empty.

IMPORTANT: Do NOT write a main method. A hidden test will call GenericTools.getLastItem with a String list and an Integer list and print the last element from each.

Expected Output:

Clara
30
Topics:
GenericsMethods
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.