Last active
January 12, 2016 03:59
-
-
Save akayj/bc8fd71046c691e56291 to your computer and use it in GitHub Desktop.
Tiny palindrome
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
palindrome = lambda s: s == s[::-1] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment