0
/ 1.0
This method takes a list of strings called list
. Implement it so that it returns the total number of vowels ('a', 'e', 'i', 'o', and 'u')...
This method takes a list of strings called list
.
Implement it so that it returns the total number of vowels
('a', 'e', 'i', 'o', and 'u') in all strings in the list.
For example, given ["ear", "prune", "plot", "try"], it should return 5.
Your feedback will appear here when you check your answer.