Skip to content

Instantly share code, notes, and snippets.

Created January 3, 2013 08:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/4441816 to your computer and use it in GitHub Desktop.
Save anonymous/4441816 to your computer and use it in GitHub Desktop.
lca2013 silly checksum
import binascii
import sys
emoji = ['👾', '💩', '☠', '🍗', '🍔', '🐘', '🍍', '🐀', '👾', '💻']
def silly_description_checksum(desc):
cs_in = '%d' % (binascii.crc32(desc) & 0xFFFFFFFF)
cs_out = []
for c in cs_in:
cs_out.append(emoji[ord(c) - ord('0')])
return ''.join(cs_out)
print(silly_description_checksum(sys.argv[1]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment