Given a string s, return the number of vowels in the string.
Vowels are a, e, i, o, u (both uppercase and lowercase should be counted).
s = "hello"2s = "AEIOU"5s = "bcdfg"00 <= s.length <= 10^5s consists of English letters (uppercase and lowercase).Run your code to see results
Use Cmd+Enter to run