Skip to content

Instantly share code, notes, and snippets.

@zgohr
Created February 25, 2014 18:44
Show Gist options
  • Save zgohr/9215037 to your computer and use it in GitHub Desktop.
Save zgohr/9215037 to your computer and use it in GitHub Desktop.
class Integer
def palindrome?
return self.to_s == self.to_s.reverse
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment