Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Jump over repetitions solution in Clear category for Bird Language by Barlamba
def translation(phrase):
consonants = [
'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'n', 'p', 'q', 'r',
's', 't', 'v', 'x', 'z', 'w'
]
vowels = 'aeiouy'
output = ''
phrase_length = len(phrase)
counter = 0
while counter < phrase_length:
if phrase[counter] in consonants:
output += phrase[counter]
counter += 2
elif phrase[counter] in vowels:
output += phrase[counter]
counter += 3
else:
output += phrase[counter]
counter += 1
return (output)
if __name__ == '__main__':
print("Example:")
print(translate("hieeelalaooo"))
#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"
print("Coding complete? Click 'Check' to review your tests and earn cool rewards!")
Nov. 5, 2019