Created
August 29, 2011 11:46
-
-
Save prajwalit/1178239 to your computer and use it in GitHub Desktop.
Given a sequence return last item.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defn get-last [vect] | |
(first (reverse (seq vect)))) | |
(get-last [1 3 2]) | |
(get-last '(1 3 2)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment