mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-10 00:09:06 +01:00
11 lines
171 B
Go
11 lines
171 B
Go
package main
|
|
|
|
func threeConsecutiveOdds(arr []int) bool {
|
|
for i := 0; i+2 < len(arr); i++ {
|
|
if arr[i]&arr[i+1]&arr[i+2]&1 != 0 {
|
|
return true
|
|
}
|
|
}
|
|
|
|
return false
|
|
}
|