package Maps //goland:noinspection GoUnusedExportedFunction // library function func IsElementExist(s []string, str string) bool { for _, v := range s { if v == str { return true } } return false }