mirror of
https://github.com/logos-blockchain/logos-blockchain-specs.git
synced 2026-01-10 17:13:08 +00:00
7 lines
105 B
Python
7 lines
105 B
Python
|
|
POWERS_OF_2 = {2**i for i in range(1, 8)}
|
|
|
|
|
|
def is_power_of_two(n) -> bool:
|
|
return n in POWERS_OF_2
|