leetcode

Solution to some Leetcode problems written in C++
git clone git://git.dimitrijedobrota.com/leetcode.git
Log | Files | Refs | README | LICENSE

1523.cpp (123B)


0 class Solution {
1 public:
2 int countOdds(int low, int high) { return (high - low) / 2 + ((low % 2) | (high % 2)); }
3 };