Skip to content

Instantly share code, notes, and snippets.

@akhileshs
Created May 1, 2015 17:29
Show Gist options
  • Select an option

  • Save akhileshs/bb9b124d3896a3ada2b2 to your computer and use it in GitHub Desktop.

Select an option

Save akhileshs/bb9b124d3896a3ada2b2 to your computer and use it in GitHub Desktop.
prime?
user=> (defn prime? [x]
#_=> (empty? (filter #(= 0 (rem x %)) (range 2 (inc (int (Math/sqrt x)))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment