Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Short®ular solution in Speedy category for Bird Language by atikin88
import re
def translation(phrase):
return re.sub(r'([aeiouy])\1\1', r'\1', re.sub(r'([^aeiouy\s])([aeiouy])', r'\1', phrase))
Jan. 14, 2020
Comments: