Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
FINALLY solution in Clear category for Bird Language by Chramar
VOWELS = "aeiouy"
def translation(phrase):
phrase=phrase.replace("eee", "e")
phrase=phrase.replace("aaa", "a")
phrase=phrase.replace("iii", "i")
phrase=phrase.replace("ooo", "o")
phrase=phrase.replace("uuu", "u")
phrase=phrase.replace("yyy", "y")
phrase=phrase.replace("eee", "e")
new=""
dl=len(phrase)
i=0
while i
Nov. 6, 2016