class Solution(object):
def isPowerOfTwo(self, n):
"""
:type n: int
:rtype: bool
"""
if n < 0:
return False
bin_str = bin(n)
return sum(map(lambda x: int(x), list(bin_str[2:]))) == 1
Download Power of Two.pyLeetcode 231 Power of Two problem solution in python3 with explanation. This is the best place to expand your knowledge and get prepared for your next interview.
Feedback is the most important part of any website.
If you have any query, suggestion or feedback, Please feel free to contact us.