LeetCode刷题之1486. 数组异或操作

tech2022-07-27  145

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 = 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 <= 10000 <= start <= 1000n == nums.length 代码: class Solution: def xorOperation(self, n: int, start: int) -> int: result = 0 for i in range(n): result ^= (start + 2 * i) return result # 执行用时:44 ms, 在所有 Python3 提交中击败了46.66%的用户 # 内存消耗:13.7 MB, 在所有 Python3 提交中击败了46.78%的用户 算法说明: 0和任意数异或不改变数值,所以初始化result = 0,然后根据要求生成数字,逐个计算异或,返回结果。
最新回复(0)