You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

20 lines
331 B

package solutions
func SplitWhiteSpaces(str string) []string {
answer := []string{}
word := ""
for _, r := range str {
if isSeparator(r) {
if word != "" {
answer = append(answer, word)
word = ""
}
} else {
word = word + string(r)
}
}
if word != "" {
answer = append(answer, word)
}
return answer
}