Open amadeann opened 3 years ago
len(bin(16)) is 7, not 6. So if we want to get to 4, we need to have:
len(bin(16))
4
len(bin(total))-3 and not: len(bin(total))-2
len(bin(total))-3
len(bin(total))-2
len(bin(16))
is 7, not 6. So if we want to get to4
, we need to have:len(bin(total))-3
and not:len(bin(total))-2