Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
shifting the index solution in Clear category for Bird Language by Adherent
def translation(phrase):
i, result = 0, []
while i < len(phrase):
result.append(phrase[i])
i += 1 + (result[-1] != ' ') + (result[-1] in 'aeiouy')
return ''.join(result)
Jan. 7, 2020