Count Odd Numbers in an Interval Range

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 two non-negative integers low and high. Return the count of odd numbers between low and high (inclusive).
LeetCode Problem - 1523
class Solution {
// Method to count the odd numbers between 'low' and 'high' (inclusive)
public int countOdds(int low, int high) {
// The formula calculates the count of odd numbers in the range.
// (high + 1) / 2 gives the total number of odd numbers from 1 to high.
// low / 2 gives the number of even numbers up to low, hence subtracting it gives the odd count between low and high.
return (high + 1) / 2 - low / 2;
}
}




