Skip to content

Instantly share code, notes, and snippets.

@banterCZ
Last active July 5, 2017 21:08
Show Gist options
  • Save banterCZ/c4061da55d80ed42df23d1761d579bf8 to your computer and use it in GitHub Desktop.
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])
(= 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