231. Power of Two

网友投稿 290 2022-12-01

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.

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

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:spring framework源码调试技巧
下一篇:Java实现学生管理系统详解
相关文章

 发表评论

暂时没有评论,来抢沙发吧~