summaryrefslogtreecommitdiff
path: root/progs/a106.py
blob: 3a78c37216c7e03b47e963351cb73b2f80f49b99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
def count_Set_Bits(n) :  
    n += 1; 
    powerOf2 = 2;   
    cnt = n // 2;  
    while (powerOf2 <= n) : 
        totalPairs = n // powerOf2;  
        cnt += (totalPairs // 2) * powerOf2;  
        if (totalPairs & 1) : 
            cnt += (n % powerOf2) 
        else : 
            cnt += 0
        powerOf2 <<= 1;    
    return cnt;