1550. Three Consecutive Odds
https://leetcode.com/problems/three-consecutive-odds
Description
Given an integer array arr
, return true
if there are three consecutive odd numbers in the array. Otherwise, return false
. Example 1:
Example 2:
Constraints:
1 <= arr.length <= 1000
1 <= arr[i] <= 1000
ac
Previous1549. The Most Recent Orders for Each ProductNext1551. Minimum Operations to Make Array Equal
Last updated