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 translation(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: