[Leetcode] Power of Two

来源:互联网 发布:淘宝卖家能给差评吗 编辑:程序博客网 时间:2024/05/21 17:29

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.


public class Solution {    public boolean isPowerOfTwo(int n) {        if(n<1) return false;        while(n>1)        {            if((n%2)==1) return false;            n=n>>1;        }        return true;    }}


0 0