Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Clear category for Bird Language by thealfest1
VOWELS = "aeiouy"
def translation(phrase):
res =''
i = 0
for l in VOWELS:
phrase = phrase.replace(l*3, l)
while i < len(phrase):
l = phrase[i]
res += l
i += 1 + (not (l.isspace() or l in VOWELS))
return res
Feb. 7, 2019
Comments: