Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
vek solution in Creative category for Bird Language by StefanPochmann
import re
def translation(phrase):
return re.sub(r'(\w)\1?.', r'\1', phrase)
May 5, 2015
Comments: