Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Parity Bit Generator by Moff
def checkio(n):
return ''.join(chr(c >> 1) for c in n if '{:b}'.format(c).count('1') & 1 == 0)
Sept. 8, 2015
Comments: