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
14px
📊 Test Results
Run your code to see test results here.