You are viewing a single comment's thread. Return to all comments →
Golang:
func camelcase(s string) int32 { // Write your code here var count int32 for _, r := range s{ if unicode.IsUpper(r){ count ++ } } return count+1 }
Seems like cookies are disabled on this browser, please enable them to open this website
CamelCase
You are viewing a single comment's thread. Return to all comments →
Golang: