Skip to content

Instantly share code, notes, and snippets.

@dudepare
Created April 20, 2016 06:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dudepare/7350d2d5740763fc0d77ee720d03d8fb to your computer and use it in GitHub Desktop.
Save dudepare/7350d2d5740763fc0d77ee720d03d8fb to your computer and use it in GitHub Desktop.
This solution is from a recent ad by @Hired_HQ
def main(msg):
convert = map(chr, msg)
print("".join(list(convert)))
if __name__ == '__main__':
msg = [76, 101, 116, 116, 104, 101, 98, 101, 115, 116, 115, 116, 97, 114, 116,117, 112, 115, 97, 112, 112, 108, 121, 116, 111, 121, 111, 117, 0]
main(msg)
@dudepare
Copy link
Author

The output is:
Letthebeststartupsapplytoyou

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment