Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Strip and Skip solution in Clear category for Bird Language by obone
VOWELS = "aeiouy"
def translation(phrase):
for c in VOWELS: phrase = phrase.replace(c * 3, c * 2)
return ' '.join(word[::2] for word in phrase.split(' '))
Sept. 8, 2019
Comments: