Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Bird Language by koladen
import re
def translation(phrase):
return re.sub(r'([aeiouy])\1\1', r'\1', re.sub(r'(?<=[^aeiouy ])[aeiouy]', '', phrase))
Nov. 5, 2020
Comments: