Problem Description
Given an integer array arr, return true if there are three consecutive odd numbers in the array. Otherwise, return false.
Key Insights
- We need to identify sequences of three odd numbers in the array.
- An odd number is defined by the condition: number % 2 != 0.
- A linear scan through the array is sufficient to check for three consecutive odd numbers.
Space and Time Complexity
Time Complexity: O(n) - We traverse the array once. Space Complexity: O(1) - We use a constant amount of extra space.
Solution
The solution involves iterating through the array while maintaining a count of consecutive odd numbers. We initialize a counter and reset it whenever we encounter an even number. If we reach a count of three, we return true. If we finish scanning the array without reaching three, we return false.