Skip to content

Instantly share code, notes, and snippets.

@tripulse
Created June 22, 2020 16:09
Show Gist options
  • Save tripulse/49b1edc91cd80adbc5fd0f244078d7b2 to your computer and use it in GitHub Desktop.
Save tripulse/49b1edc91cd80adbc5fd0f244078d7b2 to your computer and use it in GitHub Desktop.
Morsecode generator implementation, converts unicode strings from/to morsecode.
from itertools import zip_longest
from functools import partial
def grouper(iterable, n, fillvalue=None):
args = [iter(iterable)] * n
return zip_longest(*args, fillvalue=fillvalue)
def morsedec(s, bits=8, chars='.-') -> str:
return ''.join(chr(int(''.join(b), base=2)) for b in
grouper(map(lambda b: str(chars.index(b)), s), bits, '0'))
def morseenc(s, bits=8, chars='.-') -> str:
return ''.join(map(lambda c: ''.join(map(lambda b: chars[int(b, base=2)],
'{:b}'.format(ord(c)).rjust(bits, '0'))), s))
@tripulse
Copy link
Author

I'm aware that the code quality is horrible but it works!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment