Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Bird Language by fed.kz
import re
VOWELS = 'aeiouy'
def translate(text:str):
return re.sub(f'([{VOWELS}])'*3, r'\1', re.sub(f'([^{VOWELS} ])[^ ]', r'\1', text))
Oct. 24, 2018
Comments: