Answers for "how to get the last item in a list c++"

9

java get last element of list

ArrayList<Integer> list = new ArrayList<Integer>(5); 
int last = list.get(list.size() - 1);
Posted by: Guest on May-30-2020
0

python last item in list

some_list = [1,2,3]
some_list[-1] is the shortest and most Pythonic.
#output = 3
Posted by: Guest on August-03-2021

Code answers related to "how to get the last item in a list c++"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language