首页 > 其他 > 详细

【LeetCode刷题】

时间:2021-03-08 14:13:08      阅读:15      评论:0      收藏:0      [点我收藏+]

给你两个整数,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

【LeetCode刷题】

原文:https://www.cnblogs.com/zhuwenjuan-blogs/p/14498639.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!