欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

1550. 存在连续三个奇数的数组 LeetCode第202场周赛

程序员文章站 2024-03-22 18:03:10
...

1550. 存在连续三个奇数的数组 LeetCode第202场周赛

传送门

传送门

结题思路

// 思路1:外层for循环遍历0-n-3个元素,内层for循环遍历是否有连续三个为奇数。
// 总结:正常双层循环遍历即可。

class Solution {
    public boolean threeConsecutiveOdds(int[] arr) {
        for(int i = 0; i < arr.length-2; i++)
        {
            int count = 0;
            for(int j = 0; j < 3; j++)
            {
                if(arr[i+j] % 2 != 0)
                {
                    ++count;
                }
            }
            if(count == 3)
            {
                return true;
            }
        }
        return false;
    }
}