Skip to content

Instantly share code, notes, and snippets.

@gilbertw1
Created September 26, 2012 14:09
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 gilbertw1/3788273 to your computer and use it in GitHub Desktop.
Save gilbertw1/3788273 to your computer and use it in GitHub Desktop.
leap year
(defn is-leap-year? [year]
(or
(and
(= 0 (mod year 4))
(not= 0 (mod year 100)))
(= 0 (mod year 400))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment