Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
.replace() solution in Clear category for Bird Language by MrPod
def translate(res):
for i in 'aeiouy': res = res.replace(i * 3, i.upper()).replace(i, '')
return res.lower()
Feb. 23, 2018
Comments: