Skip to content

Instantly share code, notes, and snippets.

@qleguennec
Created July 15, 2017 09:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save qleguennec/d3f07cd9967c9a4b754c0a627dbc76fd to your computer and use it in GitHub Desktop.
Save qleguennec/d3f07cd9967c9a4b754c0a627dbc76fd to your computer and use it in GitHub Desktop.
(defn prime-slieve
[f acc [p & coll]]
(if (nil? p)
acc
(recur f (f acc p) (doall (remove (partial div? p) coll)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment