Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Bird Language by erewhon
def translation(phrase):
import re
VOWELS = "aeiouy"
del_dup = phrase.replace("aaa","A").replace("eee","E").replace("iii","I").replace("ooo","O").replace("uuu","U").replace("yyy","Y")
del_random_voewls = re.sub(r"[aeiouy]", "", del_dup)
return del_random_voewls.lower()
Dec. 18, 2019
Comments: