mirror of
https://github.com/logos-co/nomos-pocs.git
synced 2025-01-12 02:14:35 +00:00
6 lines
105 B
Python
6 lines
105 B
Python
POWERS_OF_2 = {2**i for i in range(1, 32)}
|
|
|
|
|
|
def is_power_of_two(n) -> bool:
|
|
return n in POWERS_OF_2
|