mirror of https://github.com/01-edu/public.git
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.
21 lines
331 B
21 lines
331 B
5 years ago
|
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
|
||
|
}
|