Leetcode 231 Power of Two

Given an integer, write a function to determine if it is a power of two.

所有为power of two的整数均为 100000... 的形式,减一则会造成所有位相异,即与的结果为0。

这里需要排除当n为0的情况,减一后与的结果仍为0。

class Solution:
    # @param {integer} n
    # @return {boolean}
    def isPowerOfTwo(self, n):
        return n & (n-1) == 0 and n != 0

 

posted @ 2015-07-06 16:31  lilixu  阅读(103)  评论(0编辑  收藏  举报