Skip to content

Commit 707ad1e

Browse files
committed
Time: 0 ms (100.00%), Space: 39.1 MB (66.46%) - LeetHub
1 parent 849e466 commit 707ad1e

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
class Solution {
22
public int countOdds(int low, int high) {
3-
int total= high-low+1;
4-
if (low % 2 != 0 && high % 2 != 0) {
5-
return total/2 + 1;
6-
}
3+
int total = high - low + 1;
4+
if (low % 2 != 0 && high % 2 != 0)
5+
return total / 2 + 1;
76
else
8-
return total/2;
7+
return total / 2;
98
}
109
}

0 commit comments

Comments
 (0)