Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Bird Language by adeq
VOWELS = "aeiouy"
def translation(phrase):
a=list(phrase)
odp1=""
for i in a:
dd=True
if i ==" ":
dd=False
odp1=odp1+i
if i not in VOWELS and dd==True:
odp1=odp1+i
del a[a.index(i)+1]
if i in VOWELS and dd==True:
odp1=odp1+i
del a[a.index(i)+1]
del a[a.index(i)+1]
return odp1
if __name__ == '__main__':
#These "asserts" using only for self-checking and not necessary for auto-testing
assert translation("hieeelalaooo") == "hello", "Hi!"
assert translation("hoooowe yyyooouuu duoooiiine") == "how you doin", "Joey?"
assert translation("aaa bo cy da eee fe") == "a b c d e f", "Alphabet"
assert translation("sooooso aaaaaaaaa") == "sos aaa", "Mayday, mayday"
Nov. 8, 2018