Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Speedy category for Bird Language by TurboProNiszczyciel
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")
wynik=""
dl=len(phrase)
i=0
while i
Dec. 18, 2017
Comments: