blob: 6e61717632d8f6660904b60f21ff8875fed6aa47 (
plain)
1
2
3
4
5
6
7
8
9
10
|
import math
def get_Pos_Of_Right_most_Set_Bit(n):
return int(math.log2(n&-n)+1)
def set_Right_most_Unset_Bit(n):
if (n == 0):
return 1
if ((n & (n + 1)) == 0):
return n
pos = get_Pos_Of_Right_most_Set_Bit(~n)
return ((1 << (pos - 1)) | n)
|