package solutions import "strings" func Join(elems []string, sep string) string { return strings.Join(elems, sep) }