#K51837. Count Strings with All Five Vowels
Count Strings with All Five Vowels
Count Strings with All Five Vowels
You are given a list of strings. Your task is to determine how many strings contain all five vowels (i.e., \(\{a,e,i,o,u\}\)) at least once.
For example, a string like "education" contains all five vowels, whereas "umbrella" does not. Write a program that reads the input from standard input and outputs the result to standard output.
Note: The vowels are \(a, e, i, o, u\) and the check is case-sensitive (only lower-case vowels are considered).
inputFormat
The first line of input contains an integer \(n\) representing the number of strings. Each of the following \(n\) lines contains a single string.
For example:
3 education umbrella sequoia
outputFormat
Output a single integer which is the count of strings containing all five vowels.
For the input above, the output should be:
2## sample
3
education
umbrella
sequoia
2
</p>