mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-10 00:09:06 +01:00
34 lines
490 B
Go
34 lines
490 B
Go
|
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
|
||
|
}
|