Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
jumping solution in Speedy category for Bird Language by David_Jones
VOWELS = 'aeiouy'
def translation(phrase):
translation = ''
i = 0
while i < len(phrase):
translation += phrase[i]
if phrase[i] in VOWELS:
i += 3
elif phrase[i] == ' ':
i += 1
else:
i += 2
return translation
June 15, 2019
Comments: