Skip to content

Instantly share code, notes, and snippets.

@haldean
Created January 10, 2012 08:16
Show Gist options
  • Save haldean/1587817 to your computer and use it in GitHub Desktop.
Save haldean/1587817 to your computer and use it in GitHub Desktop.
UMQRA
#!/usr/bin/env pypy
a = ord('a')
for offset in range(26):
print ''.join(
map(lambda char: chr((ord(char) - a + offset) % 26 + a), 'umqra'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment