Skip to content

Instantly share code, notes, and snippets.

@ddeaguiar
Created August 4, 2011 13:51
Show Gist options
  • Save ddeaguiar/1125190 to your computer and use it in GitHub Desktop.
Save ddeaguiar/1125190 to your computer and use it in GitHub Desktop.
Project Euler problem #1 solution in clojure
(apply +
(filter #(or (= 0 (mod % 3))
(= 0 (mod % 5)))
(range 1 1000)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment