June Leetcoding Challenge(6.8) Posted on 2020-06-08 In LeetCode , June Leetcoding Challenge Symbols count in article: 423 Reading time ≈ 1 mins. LeetCode六月挑战(6.8)Power of TwoPower of TwoSolution Given an integer, write a function to determine if it is a power of two. Example 1: 123Input: 1Output: true Explanation: 20 = 1 Example 2: 123Input: 16Output: trueExplanation: 24 = 16 Example 3: 12Input: 218Output: false 思路 代码12345678class Solution { public boolean isPowerOfTwo(int n) { // if(n> 0 && (n & (n-1))==0) // return true; // return false; return n> 0 && (n & (n-1))==0; }} -------------本文结束感谢您的阅读------------- 本文标题:June Leetcoding Challenge(6.8) 文章作者:Jungle 发布时间:2020年06月08日 - 07:46 最后更新:2020年06月08日 - 07:49 原始链接:http://yoursite.com/2020/06/08/LeetCodeJune8th/ 许可协议: 署名-非商业性使用-禁止演绎 4.0 国际 转载请保留原文链接及作者。 Welcome to my other publishing channels WeChat