Files
cariddi/utils/slice.go
T
2021-04-28 12:19:28 +02:00

15 lines
294 B
Go

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
}