Given a string s, return the number of vowel characters it contains, where vowels are the letters a, e, i, o, u in either lowercase or uppercase. You must count the vowels recursively, not with a loop.
Input: A string s enclosed in double quotes.
Output: Return an integer count of vowels.
Input: "hello"
Output: 2
Explanation: 'e' and 'o' are vowels.Input: "AEIOU"
Output: 5
Explanation: All five uppercase vowels.Input: "bcdfg"
Output: 0
Explanation: No vowels.0 <= s.length <= 10^4