package solutions import ( "strings" ) func Compare(s string, toCompare string) int { return strings.Compare(s, toCompare) }