This is the repo containing my code for the reddit programming challenge (to be sent as an application for hire)

crc.py 115B

123456789
  1. import zlib
  2. x = zlib.crc32('banana stand') & 0xffffffff
  3. y = x
  4. binary = bin(x)
  5. y = y >> binary.count('1')
  6. print y