Skip to content

Instantly share code, notes, and snippets.

@pingles
Created October 13, 2010 12:42
Show Gist options
  • Save pingles/623952 to your computer and use it in GitHub Desktop.
Save pingles/623952 to your computer and use it in GitHub Desktop.
(defn multiple-of?
[divisors n]
(some #(= 0 %)
(map #(mod n %) divisors)))
(reduce +
(filter #(multiple-of? '(3 5) %)
(range 1 1000)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment