Leetcode 231: Power of Two
Posted Keep walking
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode 231: Power of Two相关的知识,希望对你有一定的参考价值。
Given an integer, write a function to determine if it is a power of two.
1 public class Solution { 2 public bool IsPowerOfTwo(int n) { 3 if (n <= 0) return false; 4 if (n <= 2) return true; 5 6 while (n > 2) 7 { 8 if (n % 2 != 0) return false; 9 n = n / 2; 10 } 11 12 return true; 13 } 14 }
以上是关于Leetcode 231: Power of Two的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode191 Number of 1 Bits. LeetCode231 Power of Two. LeetCode342 Power of Four