0
0

More than 1 year has passed since last update.

Leetcode 1523. Count Odd Numbers in an Interval Range

Last updated at Posted at 2023-02-13

アプローチ

Brute force

class Solution {
    public int countOdds(int low, int high) {
        int total = high - low + 1;
        if (total % 2 == 0) {
            return total / 2;
        }
        if (low % 2 == 1) {
            return total / 2 + 1;
        }
        return total / 2;
    }
/* TLE
    public int countOdds1(int low, int high) {
        int count = 0;
        for (int i = low; i <= high; i++) {
            if (i % 2 != 0) count++;
        }
        return count;

    }
*/
}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0