You are given a string s containing only lowercase English letters, your task is to return the number of vowels in the string.
The vowels are 'a', 'e', 'i', 'o', and 'u'.
"hello"
2
The vowels are 'e' and 'o'.
"programming"
3
The vowels are 'o', 'a', and 'i'.
"rhythm"
0
There are no vowels in this string.
"hello"
2