Skip to content

Instantly share code, notes, and snippets.

@manisnesan
Last active August 29, 2015 14:07
Show Gist options
  • Save manisnesan/d371634a315e6a808a4a to your computer and use it in GitHub Desktop.
Save manisnesan/d371634a315e6a808a4a to your computer and use it in GitHub Desktop.
Write a function to find out if a string is a palindrome–that is, if it looks the same forwards and backwards.
(defn isPalindrome
[inputStr]
(= inputStr (apply str (reverse inputStr))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment