1456. Maximum Number of Vowels in a Substring of Given Length Time: Space: Python 1 2 3 4 5 6 7 8 9 10 11 12 13 14class Solution: def maxVowels(self, s: str, k: int) -> int: ans = 0 maxi = 0 vowels = {'a', 'e', 'i', 'o', 'u'} for i, c in enumerate(s): if c in vowels: maxi += 1 if i >= k and s[i - k] in vowels: maxi -= 1 ans = max(ans, maxi) return ans