【LeetCode刷题】

给你两个整数,n 和 start 。
数组 nums 定义为:nums[i] = start + 2*i(下标从 0 开始)且 n == nums.length 。
请返回 nums 中所有元素按位异或(XOR)后得到的结果。

 

class Solution {
public int xorOperation(int n, int start) {
int data=start;
for(int i=1;i<n;i++){
int temp = start + 2 * i;
data = data ^ temp;
}
return data;
}
}

 

参考:https://blog.csdn.net/Zhouzi_heng/article/details/111400040

posted @ 2021-03-08 11:15  一直特立独行的猪  阅读(69)  评论(0)    收藏  举报