博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Power of Two
阅读量:5277 次
发布时间:2019-06-14

本文共 349 字,大约阅读时间需要 1 分钟。

Power of Two

Total Accepted: 43421 Total Submissions: 130315 Difficulty: Easy

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

class Solution {public:    bool isPowerOfTwo(int n) {        long long int m = n;        return n==0 ? false : (m&(m-1))==0;    }};

Next challenges:   

转载于:https://www.cnblogs.com/zengzy/p/5052349.html

你可能感兴趣的文章
【转】Android安全研究经验谈
查看>>
【洛谷】P1313 计算系数(快速幂+杨辉三角)
查看>>
【BZOJ】1975 [Sdoi2010]魔法猪学院(A*)
查看>>
Django框架之ORM的相关操作(三)
查看>>
C++异常处理
查看>>
【Golang 接口自动化05】使用yml管理自动化用例
查看>>
windwos errorlevel变量获取XCOPY返回值,if判断失效处理
查看>>
ICMP
查看>>
Spark SQL概念学习系列之分布式SQL引擎
查看>>
Suricata的命令行解释
查看>>
Hadoop概念学习系列之再谈hadoop集群里的本地模式、伪分布模式和全分布模式(三十七)...
查看>>
PL/SQL中复制粘贴表结构信息
查看>>
Get和Post方法的异同
查看>>
【C编程基础】多线程编程
查看>>
GridSearchCV 与 RandomizedSearchCV 调参
查看>>
day3-mysql单表查询
查看>>
【Mac + Appium + Python3.6学习(三)】之IOS自动化测试环境配置
查看>>
推荐算法
查看>>
github
查看>>
敏捷软件开发与传统软件工程
查看>>