package solutions import ( "strings" ) func ToUpper(s string) string { s = strings.ToUpper(s) return s }