LeetCode每日一题(1486. 数组异或操作)
Posted XiaoFanMi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode每日一题(1486. 数组异或操作)相关的知识,希望对你有一定的参考价值。
简单题我重拳出击
给你两个整数,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 = 1, start = 7
输出:7
来源:力扣(LeetCode)
原题连接:https://leetcode-cn.com/problems/xor-operation-in-an-array
思路与代码
和昨天的题一样的类型,就不解释了,直接上代码
class Solution {
public int xorOperation(int n, int start) {
int res = start;
for (int i = 0; i < n-1; i++) {
start+=2;
res=res^start;
}
return res;
}
}
以上是关于LeetCode每日一题(1486. 数组异或操作)的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode1486. 数组异或操作(Java/c++ 暴力模拟)
LeetCode1486. 数组异或操作(Java/c++ 暴力模拟)