leetcode342
Posted AsenYang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode342相关的知识,希望对你有一定的参考价值。
public class Solution { public bool IsPowerOfFour(int num) { return (num > 0) && ((num & (num - 1)) == 0) && ((num & 0x55555555) == num); } }
https://leetcode.com/problems/power-of-four/#/description
以上是关于leetcode342的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode191 Number of 1 Bits. LeetCode231 Power of Two. LeetCode342 Power of Four
LeetCode 第 342 题(Power of Four)