1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-19 17:56:55 +02:00
LeetCode/go/maximum-number-of-vowels-in-a-substring-of-given-length.go

34 lines
490 B
Go
Raw Normal View History

package main
func maxVowels(s string, k int) int {
isVowel := func(c byte) bool {
return c == 'a' || c == 'e' || c == 'i' || c == 'o' || c == 'u'
}
countFirst := func() int {
count := 0
for i := 0; i < k; i++ {
if isVowel(s[i]) {
count++
}
}
return count
}
count := countFirst()
maxCount := count
for i := k; i < len(s); i++ {
if isVowel(s[i-k]) {
count--
}
if isVowel(s[i]) {
count++
}
maxCount = max(maxCount, count)
}
return maxCount
}