package lib func Contains[T comparable](s []T, v T) bool { for _, x := range s { if x == v { return true } } return false }