DEV Community

Discussion on: Daily Challenge #80 - Longest Vowel Change

Collapse
 
rafaacioly profile image
Rafael Acioly • Edited

Hey @peter , you can also use multiple values in a single case statement


switch c {
case 'a', 'e', 'i', 'o', 'u':
    ls += string(c)
default:
    arr = append(arr, ls)
    ls = ""
}

github.com/golang/go/wiki/Switch#m...

Collapse
 
pmkroeker profile image
Peter

Hey good to know thanks! Just learning go so didn't realize I could do that. Thanks!

Thread Thread
 
rafaacioly profile image
Rafael Acioly • Edited

there's also strings.Count built-in method ;)

golang.org/pkg/strings/#Count

strings.Count("codewarriors", "a") // 1