summaryrefslogtreecommitdiff
path: root/progs/a441.py
blob: 59eaae842fd17fd12df56c853eb3b8d0627bc4d5 (plain)
1
2
3
4
5
6
7
8
def count_With_Odd_SetBits(n): 
    if (n % 2 != 0): 
        return (n + 1) / 2
    count = bin(n).count('1') 
    ans = n / 2
    if (count % 2 != 0): 
        ans += 1
    return ans