Skip to content

Instantly share code, notes, and snippets.

@santosh79
Created April 4, 2016 08:29
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 santosh79/bf61c9c395515012de83be17f0b2cd19 to your computer and use it in GitHub Desktop.
Save santosh79/bf61c9c395515012de83be17f0b2cd19 to your computer and use it in GitHub Desktop.
(defn find-prime
[start end]
(take 1 (filter #(is-prime %) (range start end))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment