Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
BOOM LOOK AT THAT solution in Creative category for Bird Language by fishsouprecipe
def translate(phrase: str):
skip = 0
def skipper(c: str):
nonlocal skip
try:
return not skip
finally:
skip = skip - 1 if skip else 2 if c in 'aeiouy' else 1
return ' '.join(''.join(c for c in word if skipper(c)) for word in phrase.split())
March 3, 2020
Comments: