wes d2a2ba9e15 first commit | 4 years ago | |
---|---|---|
.. | ||
README.md | 4 years ago | |
code.cpp | 4 years ago | |
unitTest.cpp | 4 years ago |
by Matt tags: strings, regex, loops
Write a function that returns the first n vowels of a string. Examples firstNVowels("sharpening skills", 3) ➞ "aei" firstNVowels("major league", 5) ➞ "aoeau" firstNVowels("hostess", 5) ➞ "invalid" Notes Return "invalid" if the n exceeds the number of vowels in a string. Vowels are: a, e, i, o, u
Write a function that returns the first n
vowels of a string.
firstNVowels("sharpening skills", 3) ➞ "aei"
firstNVowels("major league", 5) ➞ "aoeau"
firstNVowels("hostess", 5) ➞ "invalid"
"invalid"
if the n
exceeds the number of vowels in a string.