一、在区间范围内统计奇数数目((Biweekly31)

题目描述:
给你两个非负整数 low 和 high 。请你返回 low 和 high 之间(包括二者)奇数的数目。

示例 1:

输入:low = 3, high = 7
输出:3
解释:3 到 7 之间奇数数字为 [3,5,7] 。
示例 2:

输入:low = 8, high = 10
输出:1
解释:8 到 10 之间奇数数字为 [9] 。

提示:

0 <= low <= high <= 10^9

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/count-odd-numbers-in-an-interval-range
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

一开始太捞了,直接for循环遍历后来才发现,可以直接计算啊

代码如下:
记住如果low或者high有一个为奇数那么需要+1
代码:

class Solution {
    public int countOdds(int low, int high) {
        int res = 0;
        int cha = high - low;
        res += (cha >> 1);
        if(((low & 1) == 1) || ((high & 1) == 1)){
            res ++;
        }
        return res;
    }
}

你可能感兴趣的:(竞赛)