231. Power of Two

Posted 蜃利的阴影下

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了231. Power of Two相关的知识,希望对你有一定的参考价值。

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

Credits:
Special thanks to @jianchao.li.fighter for adding this problem and creating all test cases.

 

Subscribe to see which companies asked this question

Hide Tags
 Math Bit Manipulation
 
 
public class Solution {
    public boolean isPowerOfTwo(int n) {
        if(n <= 0)
            return false;
        return (n & (n-1)) == 0;
    }
}

 

 

以上是关于231. Power of Two的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode(231) Power of Two

231. Power of Two

LeetCode191 Number of 1 Bits. LeetCode231 Power of Two. LeetCode342 Power of Four

231. Power of Two

[leetcode]231. Power of Two

#Leetcode# 231. Power of Two