Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Bird Language by wbl4126
VOWELS = "aeiouy"
def translation(phrase):
pgen = (s for s in phrase)
ret = []
for l in pgen:
if l.isalpha():
next(pgen)
if l in VOWELS: next(pgen)
ret += l
return ''.join(ret)
March 6, 2020
Comments: