package solutions import ( "strings" ) func Split(str, charset string) []string { return strings.Split(str, charset) }