Three Consecutive Odds

As a Systems Engineer at Tata Consultancy Services, I deliver exceptional software products for mobile and web platforms, using agile methodologies and robust quality maintenance. I am experienced in performance testing, automation testing, API testing, and manual testing, with various tools and technologies such as Jmeter, Azure LoadTest, Selenium, Java, OOPS, Maven, TestNG, and Postman.
I have successfully developed and executed detailed test plans, test cases, and scripts for Android and web applications, ensuring high-quality standards and user satisfaction. I have also demonstrated my proficiency in manual REST API testing with Postman, as well as in end-to-end performance and automation testing using Jmeter and selenium with Java, TestNG and Maven. Additionally, I have utilized Azure DevOps for bug tracking and issue management.
Given an integer array arr, return true if there are three consecutive odd numbers in the array. Otherwise, return false.
LeetCode Problem - 1550
class Solution {
// Method to check if there are three consecutive odd numbers in the array
public boolean threeConsecutiveOdds(int[] arr) {
int arrLength = arr.length; // Length of the input array
boolean result = false; // Initialize result as false
// Iterate through the array, stopping at the third to last element
for(int i=0; i<arrLength-2; i++){
// Check if the current element is odd
if(arr[i] % 2 != 0){
// Check if the next two consecutive elements are also odd
if((arr[i+1] % 2 != 0) && (arr[i+2] % 2 != 0)){
result = true; // If three consecutive odds are found, set result to true
break; // Exit the loop since the condition is met
}
}
}
return result; // Return the final result indicating whether three consecutive odds were found
}
}




