leetcode:810. 黑板异或游戏

链接:https://leetcode-cn.com/problems/chalkboard-xor-game/
数学题,当一开始黑板上的数的异或值为0或个数为偶数时小红必胜。
java代码:

class Solution {
    public boolean xorGame(int[] nums) {
        int a = nums[0];
        for(int i = 1;i<nums.length;i++)
            a^=nums[i];
        if(a==0||nums.length%2==0)
            return true;
        else 
            return false;
    }
}

你可能感兴趣的:(leetcode)