[leetcode]231. Power of Two
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[leetcode]231. Power of Two相关的知识,希望对你有一定的参考价值。
Total Accepted: 62182 Total Submissions: 173791 Difficulty: Easy
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
1 class Solution { 2 public: 3 bool isPowerOfTwo(int n) { 4 5 return (n>0)&&((n&(n-1))==0); 6 } 7 };
以上是关于[leetcode]231. Power of Two的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode191 Number of 1 Bits. LeetCode231 Power of Two. LeetCode342 Power of Four