暂无分类
暂无标签
发布于2020-06-23 23:22 阅读(619) 评论(0) 点赞(14) 收藏(5)
0
1
2
3
4
5
给你两个整数,n 和 start 。
数组 nums 定义为:nums[i] = start + 2*i
(下标从 0 开始)且 n == nums.length
。
请返回 nums 中所有元素按位异或(XOR)后得到的结果。
示例 1:
输入:n = 5, start = 0
输出:8
解释:数组 nums 为 [0, 2, 4, 6, 8],其中 (0 ^ 2 ^ 4 ^ 6 ^ 8) = 8 。
"^" 为按位异或 XOR 运算符。
示例 2:
输入:n = 4, start = 3
输出:8
解释:数组 nums 为 [3, 5, 7, 9],其中 (3 ^ 5 ^ 7 ^ 9) = 8.
示例 3:
输入:n = 1, start = 7
输出:7
示例 4:
输入:n = 10, start = 5
输出:2
提示:
1 <= n <= 1000
0 <= start <= 1000
n == nums.length
class Solution { //C++
public:
int xorOperation(int n, int start) {
int i, XOR = 0;
for(i = 0; i < n; i++)
{
XOR ^= (start+2*i);
}
return XOR;
}
};
class Solution:# py3
def xorOperation(self, n: int, start: int) -> int:
XOR = 0
for i in range(n):
XOR ^= (start+2*i)
return XOR
0
1
2
3
4
5
6
7
8
作者:你太美丽
链接: https://www.pythonheidong.com/blog/article/426787/c29b1f49faf754bab3b7/
来源: python黑洞网
任何形式的转载都请注明出处,如有侵权 一经发现 必将追究其法律责任
昵称:
评论内容:(最多支持255个字符)
Copyright © 2018-2019 python黑洞网 All Rights Reserved 版权所有,并保留所有权利。 京ICP备18063182号-1
投诉与举报,广告合作请联系z452as@163.com或QQ3083709327
免责声明:网站文章均由用户上传,仅供读者学习交流使用,禁止用做商业用途。若文章涉及色情,反动,侵权等违法信息,请向我们举报,一经核实我们会立即删除!