summaryrefslogtreecommitdiff
path: root/progs/a530.py
blob: fb9221a3009059d658ed6bd023725c17f60e5d72 (plain)
1
2
3
4
5
6
7
8
def next_Power_Of_2(n): 
    count = 0; 
    if (n and not(n & (n - 1))): 
        return n   
    while( n != 0): 
        n >>= 1
        count += 1
    return 1 << count;