August 27, 2024

P01 - Find the last element of a list.

Example:

scala

scala> last(List(1, 1, 2, 3, 5, 8))
res0: Int = 8
Be first to comment
Leave a reply