-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuniques.go
62 lines (49 loc) · 994 Bytes
/
uniques.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package uniques
import (
"sort"
)
func StringSlice(ss []string) uniqueStrings {
keys := make(map[string]bool)
var uniques uniqueStrings
for _, item := range ss {
if _, value := keys[item]; !value {
keys[item] = true
uniques = append(uniques, item)
}
}
return uniques
}
func IntSlice(ss []int) uniqueInts {
keys := make(map[int]bool)
var uniques uniqueInts
for _, item := range ss {
if _, value := keys[item]; !value {
keys[item] = true
uniques = append(uniques, item)
}
}
return uniques
}
func NewItems(oldSlice, newSlice []string) []string {
oldMap := make(map[string]bool)
var newi []string
for _, ele := range oldSlice {
oldMap[ele] = true
}
for _, el := range newSlice {
if _, ok := oldMap[el]; !ok {
newi = append(newi, el)
}
}
return newi
}
type uniqueStrings []string
func (us uniqueStrings) Sort() []string {
sort.Strings(us)
return us
}
type uniqueInts []int
func (ui uniqueInts) Sort() []int {
sort.Ints(ui)
return ui
}