Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Bird Language by bukebuer
def translation(phrase):
for ch in "aeiouy":
phrase = phrase.replace(ch*3, ch*2)
return ' '.join([''.join(n[::2]) for n in phrase.split(' ')])
June 25, 2014
Comments: