Your question is Power of Two Using Bitwise. Start with the requirements on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
Bosch IoT Suite components may use powers of two when configuring buffer sizes, alignment values, or capacity limits. Given an integer n, determine whether it is an exact power of two using binary representation and bitwise operations.
Return True if there exists an integer k >= 0 such that n = 2^k; otherwise, return False. The value 1 is a power of two because 1 = 2^0. Non-positive values are not powers of two.
Implement is_power_of_two(n), which accepts an integer and returns a boolean. Prefer an O(1) time and O(1) space bitwise solution.
def is_power_of_two(n):