-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcount_odd_numbers_in_an_interval_range.dart
104 lines (83 loc) · 1.81 KB
/
count_odd_numbers_in_an_interval_range.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/*
-* 1523. Count Odd Numbers in an Interval Range *-
Given two non-negative integers low and high. Return the count of odd numbers between low and high (inclusive).
Example 1:
Input: low = 3, high = 7
Output: 3
Explanation: The odd numbers between 3 and 7 are [3,5,7].
Example 2:
Input: low = 8, high = 10
Output: 1
Explanation: The odd numbers between 8 and 10 are [9].
Constraints:
0 <= low <= high <= 10^9
*/
class A {
int countOdds(int high, int low) {
return ((high + 1) ~/ 2) - (low ~/ 2);
}
}
class B {
int countOdds(int high, int low) {
if ((high & 1) == 0) high--;
return (low > high) ? 0 : (high + 1) ~/ 2 - (low ~/ 2);
}
}
class C {
int countOdds(int high, int low) {
int total = high - low + 1;
if (total % 2 == 0)
return total ~/ 2;
else {
if (low % 2 != 0)
return total ~/ 2 + 1;
else
return total ~/ 2;
}
}
}
class D {
int countOdds(int low, int high) {
if (low % 2 == 0 && high % 2 == 0)
return (high - low) ~/ 2;
else {
int firstOddNumber = low % 2 == 0 ? low + 1 : low;
return (high - firstOddNumber) ~/ 2 + 1;
}
}
}
class F {
int countOdds(int high, int low) {
int count = 0;
for (int i = low; i <= high; i++) {
if (i % 2 != 0) count++;
}
return count;
}
}
class G {
int countOdds(int low, int high) {
int result = 0;
if ((low & 1) == 0) {
result++;
low++;
}
if ((high & 1) == 0) {
result++;
high--;
}
result += (high - low) ~/ 2;
return result;
}
}
class H {
int countOdds(int low, int high) {
if (low % 2 == 0 && high % 2 == 0) {
return (high - low) ~/ 2;
} else if (low % 2 != 0 && high % 2 != 0) {
return 2 + (high - low) ~/ 2 - 1;
} else {
return 1 + (high - low) ~/ 2;
}
}
}