Last active
August 29, 2015 14:07
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(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