Skip to content

Instantly share code, notes, and snippets.

@veiset
Last active August 29, 2015 14:10
Show Gist options
  • Save veiset/f7b3d5354b8964bc3dd8 to your computer and use it in GitHub Desktop.
Save veiset/f7b3d5354b8964bc3dd8 to your computer and use it in GitHub Desktop.
def palindrom(x): return x == x[::-1]
print len([i for i
in range(1,1000000)
if palindrom(str(i)) and palindrom("{0:o}".format(i))])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment