数组异或
难度简单
题目描述

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/height-checker
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
解题思路
Code
public int xorOperation(int n, int start) {int ans = 0;for (int i = 0; i < n; i++) {ans ^= (start + 2 * i);}return ans;}
