Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Bird Language solution in Clear category for Bird Language by cc41516
import re
def translation(phrase):
phrase = re.sub(r'([aeiouy])\1\1', r'\1', phrase)
phrase = re.sub(r'([^aeiouy ])([aeiouy])', r'\1', phrase)
return phrase
Sept. 2, 2018