Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Parity Bit Generator by Sim0000
def checkio(message):
def check(c):
return bin(c).count('1') & 1 == 0
return ''.join(chr(c >> 1) for c in message if check(c))
Sept. 2, 2015
Comments: