Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Bird Language solution in Uncategorized category for Bird Language by Aleksandra_Niewiadomska
def translate(text: str) -> str:
letters = "aeiouy"
output = ""
i = 0
while i < len(text):
output += text[i]
if text[i] in letters:
i += 3
elif text[i] == ' ':
i += 1
else:
i += 2
return output
print("Example:")
print(translate("hieeelalaooo"))
# These "asserts" are used for self-checking
assert translate("hieeelalaooo") == "hello"
assert translate("hoooowe yyyooouuu duoooiiine") == "how you doin"
assert translate("aaa bo cy da eee fe") == "a b c d e f"
assert translate("sooooso aaaaaaaaa") == "sos aaa"
print("The mission is done! Click 'Check Solution' to earn rewards!")
Feb. 1, 2023