LeetCode1486. 数组异或操作(Java/c++ 暴力模拟)

Posted oyzg

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode1486. 数组异或操作(Java/c++ 暴力模拟)相关的知识,希望对你有一定的参考价值。

1486. 数组异或操作

解题思路
直接暴力模拟

代码:
java:

class Solution 
    public int xorOperation(int n, int start) 
        int num = 0;
		int sum = 0;
		for(int i = 0; i < n; i++) 
			num = start+i*2;
			sum ^= num;
		
		return sum;
    

c++:

class Solution 
public:
    int xorOperation(int n, int start) 
        int num = 0;
		int sum = 0;
		for(int i = 0; i < n; i++) 
			num = start+i*2;
			sum ^= num;
		
		return sum;
    
;

以上是关于LeetCode1486. 数组异或操作(Java/c++ 暴力模拟)的主要内容,如果未能解决你的问题,请参考以下文章

我用java刷 leetcode 1486. 数组异或操作

LeetCode:1486. 数组异或操作

LeetCode1486. 数组异或操作

python描述 LeetCode 1486. 数组异或操作

LeetCode 1486.数组异或操作

LeetCode每日一题(1486. 数组异或操作)