#20
Penultimate Element
 

Difficulty:Easy
Topics:seqs


Write a function which returns the second to last element from a sequence.
test not run
(= (__ (list 1 2 3 4 5)) 4)
test not run
(= (__ ["a" "b" "c"]) "b")
test not run
(= (__ [[1 2] [3 4]]) [1 2])


Code which fills in the blank: