Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Short Telegraph solution in Creative category for Morse Clock by hrvoje
def checkio(data):
return '{:02b} {:04b} : {:03b} {:04b} : {:03b} {:04b}'.format(*list(map(int,list("".join([i.zfill(2) for i in data.split(':')]))))).replace('0', '.').replace('1', '-')
#These "asserts" using only for self-checking and not necessary for auto-testing
April 19, 2014
Comments: