Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Bird Language by m.kleinkranenbarg
VOWELS = "aeiouy"
def translate(text: str) -> str:
i, result = 0, ''
while i < len(text):
c = text[i]
result += c
i += 1 if not c.isalpha() else (3 if c in VOWELS else 2)
return result
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!")
March 6, 2023