Skip to content

Instantly share code, notes, and snippets.

@ericevenchick
Created August 6, 2013 20:55
Show Gist options
  • Save ericevenchick/6168557 to your computer and use it in GitHub Desktop.
Save ericevenchick/6168557 to your computer and use it in GitHub Desktop.
Type A Machine's DEF CON Challenge
"""
Type A Machine's DEF CON Challenge
result: txqeahackers
"""
from string import ascii_lowercase
alpha = list(ascii_lowercase)
code = [29,33,26,14,10,17,10,12,20,14,27,28]
for c in code:
print(alpha[c-10], end='')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment