Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Bird Language by Mahoter
VOWELS = "aeiouy"
def translate(phrase):
res = ""
a = 0
while a < len(phrase):
if phrase[a] not in VOWELS:
res += phrase[a]
a+=1
elif a > 0 and phrase[a-1] != " " and phrase[a-1] not in VOWELS:
a+=1
elif a
Jan. 18, 2016