@@ -0,0 +1,10 @@
package main
func contain[T comparable](arr []T, elem T) bool {
for _, v := range arr {
if v == elem {
return true
}
return false
The note is not visible to the blocked user.