Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Clear solution in Clear category for Bird Language by ksc38317
def translation(phrase):
VOWELS = "aeiouy "
for c in VOWELS:
phrase = phrase.replace(c*3,c)
phrase = list(phrase)
for i, c in enumerate(phrase):
if c not in VOWELS:
del phrase[i+1]
return ''.join(phrase)
June 15, 2019
Comments: