class Solution {
public:
int xorOperation(int n, int start) {
int ans=start;
for(int i=0;i<n-1;++i){
start+=2;
ans^=start;
}
return ans;
}
};
核心思路是求出每一位的数组值后就立即进行异或,而不是保存到数组中最后再次遍历异或