package utils //removeDuplicateValues func removeDuplicateValues(intSlice []string) []string { keys := make(map[string]bool) list := []string{} for _, entry := range intSlice { if _, value := keys[entry]; !value { keys[entry] = true list = append(list, entry) } } return list }