Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
re solution in Clear category for Bird Language by twilyght
import re
def translation(phrase):
clear_consonants = re.sub(r'([^ aeiouy])[aeiouy]', r'\1', phrase)
clear_vowels = re.sub(r'([aeiouy]){3}', r'\1', clear_consonants)
return clear_vowels
May 5, 2020
Comments: