Leetcode no. 231

来源:互联网 发布:sql2000数据库安装 编辑:程序博客网 时间:2024/06/06 00:58

231. Power of Two


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


public class Solution {    public boolean isPowerOfTwo(int n) {        return n>0 && (n & (n-1))==0;    }}


0 0