Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Bird Language by saklar13
VOWELS = "aeiouy"
def translation(phrase):
result = ''
i = 0
while i < len(phrase):
result += phrase[i]
if phrase[i] in VOWELS:
i += 3
elif phrase[i] == ' ':
i += 1
else:
i += 2
return result
Jan. 5, 2015