Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Bird Language by pmduque
VOWELS = "aeiouy"
def translate(phrase):
# - after each consonant letter the bird appends a random vowel letter (l β la or le);
# - after each vowel letter the bird appends two of the same letter (a β aaa);
result=""
pos=0
while pos
Aug. 1, 2019
Comments: