Skip to content

Instantly share code, notes, and snippets.

@Chouser
Forked from wfarr/pal.clj
Created February 26, 2009 21:31
Show Gist options
  • Save Chouser/71128 to your computer and use it in GitHub Desktop.
Save Chouser/71128 to your computer and use it in GitHub Desktop.
(defn isPal [string]
(let [lower (.toLowerCase string)]
(= (seq lower) (reverse lower))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment