strings
Write a function solution(s) that returns the count of vowels (a, e, i, o, u — both upper and lower case) in the string s.
Example
solution("hello") → 2
solution("Python") → 1
solution.py
💡 Tip: Press Ctrl+Enter to run