We're a place where coders share, stay up-to-date and grow their careers.
Go:
package kata import "strings" func GetCount(str string) (count int) { var vowels = "aeiou" for _, v := range str { if strings.Contains(vowels, string(v)) { count++ } } return }
Go: