Golang sprawdź, czy strumień istnieje w plasterze
func contains(s []int, e int) bool {
for _, a := range s {
if a == e {
return true
}
}
return false
}
Tired Termite