Skip to content

Instantly share code, notes, and snippets.

@pbalduino
Last active August 29, 2015 14:06
Show Gist options
  • Select an option

  • Save pbalduino/d36d2d520579dde8cf8a to your computer and use it in GitHub Desktop.

Select an option

Save pbalduino/d36d2d520579dde8cf8a to your computer and use it in GitHub Desktop.
Primos
(loop [fs []
nums (range 2 23)]
(let [f (first nums)]
(if (empty? nums)
fs
(recur (conj fs f)
(filter #(not= 0 (mod % f)) nums)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment