Files
utilities/Maps/maps.go

12 lines
209 B
Go
Executable File

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
}