Write a function that returns true if an integer can be expressed as a power of base value 2 and false otherwise.
true
false
power_of_two(32) ➞ true power_of_two(1) ➞ true power_of_two(18) ➞ false
N/A