Docs: specify what is considered a vowel in this exercise

This commit is contained in:
eslopfer 2022-09-12 13:31:29 +01:00 committed by Dav Hojt
parent c91da2f110
commit f9067b837f
2 changed files with 2 additions and 0 deletions

View File

@ -7,6 +7,7 @@ Create a **function** which transforms the string passed as an argument into Pig
- If a word begins with a vowel, just add "ay" to the end. - If a word begins with a vowel, just add "ay" to the end.
- If it begins with a consonant, then we take all consonants before the first vowel, move them to the end of the word, and then add "ay" at the end. - If it begins with a consonant, then we take all consonants before the first vowel, move them to the end of the word, and then add "ay" at the end.
- If a word starts with a consonant followed by "qu", move it to the end of the word, and then add an "ay" at the end. - If a word starts with a consonant followed by "qu", move it to the end of the word, and then add an "ay" at the end.
- Only the latin vowels will be considered as vowel(aeiou).
### Expected functions ### Expected functions

View File

@ -8,6 +8,7 @@ The rules used by Pig Latin are as follows:
- If a word begins with a vowel, just add "ay" to the end. - If a word begins with a vowel, just add "ay" to the end.
- If it begins with a consonant, then we take all consonants before the first vowel and we put them on the end of the word and add "ay" at the end. - If it begins with a consonant, then we take all consonants before the first vowel and we put them on the end of the word and add "ay" at the end.
- Only the latin vowels will be considered as vowel(aeiou).
If the word has no vowels, the program should print "No vowels". If the word has no vowels, the program should print "No vowels".