Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
One-liner solution in Speedy category for Parity Bit Generator by vit.aborigen
checkio = lambda x: ''.join([chr(int(bin(value>>1)[2:], 2)) for value in x if not bin(value).count('1') % 2])
Nov. 14, 2018
Comments: