Tags | skill/problem_solving |
Hard Prerequisites | |
IMPORTANT: Please review these prerequisites, they include important information that will help you with this content. | |
|
Write a function that takes in a string and then returns all the vowels in the string.
The returned vowels should be:
If a vowel appears twice in the input string then it should appear twice in the output.
task9("Hello there Andy")
should return [a, e, e, e, o]
task9("xyz")
should return []