Last active
July 5, 2017 21:08
-
-
Save banterCZ/c4061da55d80ed42df23d1761d579bf8 to your computer and use it in GitHub Desktop.
Get me the average age of the older than 50. (def ages [55 20 75])
This file contains hidden or 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
(= 65 | |
(/ | |
(reduce + (filter #(> % 50) ages)) | |
(count (filter #(> % 50) ages)) | |
) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment