摘要: class Solution { public boolean isPowerOfTwo(int n) { return n > 0 && (n & (n-1)) == 0; } } 这里引用评论区Kico大神的解释。 阅读全文
posted @ 2020-10-31 17:20 peanut_zh 阅读(47) 评论(0) 推荐(0) 编辑
摘要: //异或运算 //1、交换律:a ^ b ^ c <=> a ^ c ^ b //2、任何数于0异或为任何数 0 ^ n => n //3、相同的数异或为0: n ^ n => 0 class Solution { public int singleNumber(int[] nums) { int 阅读全文
posted @ 2020-10-31 17:12 peanut_zh 阅读(72) 评论(0) 推荐(0) 编辑