package solutions import "sort" func SortWordArr(a []string) { sort.Strings(a) }