Set is a simple Set data structure implementation in Go (Golang) using LinkedHashMap. This library allow you to get a set of int64 or string without duplicated items. Usage package main import ( "fmt" "github.com/StudioSol/set" ) func main() { duplicatedInt64 := []int64{1, 1, 2,...