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.
Q - Given an integer array arr, return true if there are three consecutive odd numbers in the array. Otherwise, return false.
LeetCode Problem: Link | Click Here
class Solution {
public boolean threeConsecutiveOdds(int[] arr) {
// Get the length of the input array
int arrLength = arr.length;
// Initialize the result to false
boolean result = false;
// Iterate through the array elements till the third last element
for(int i = 0; i < arrLength - 2; i++) {
// Check if the current number is odd
if(arr[i] % 2 != 0) {
// Check if the next two consecutive numbers are also odd
if((arr[i + 1] % 2 != 0) && (arr[i + 2] % 2 != 0)) {
// If three consecutive odds are found, set result to true and exit the loop
result = true;
break;
}
}
}
// Return the final result indicating whether there were three consecutive odds
return result;
}
}




