mirror of
https://github.com/wahyd4/say-it.git
synced 2026-08-09 05:06:41 +10:00
11 lines
145 B
Go
11 lines
145 B
Go
package utils
|
|
|
|
func Contains(item int, array []int) bool {
|
|
for _, one := range array {
|
|
if one == item {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|