当前位置: 代码迷 >> 综合 >> Leetcode 1486. XOR Operation in an Array
  详细解决方案

Leetcode 1486. XOR Operation in an Array

热度:14   发布时间:2023-12-12 20:54:11.0

文章作者:Tyan
博客:noahsnail.com  |  CSDN  |  简书

1. Description

XOR Operation in an Array

2. Solution

**解析:**Version 1,初始值设为0,因为任何数异或0都不改变其值,按规则依次计算数组中的值,然后进行异或运算即可。

  • Version 1
class Solution:def xorOperation(self, n: int, start: int) -> int:result = 0for i in range(n):x = start + 2 * iresult ^= xreturn result

Reference

  1. https://leetcode.com/problems/xor-operation-in-an-array/
  相关解决方案