美文网首页
力扣每日一题:1486.数组异或操作

力扣每日一题:1486.数组异或操作

作者: 清风Python | 来源:发表于2021-05-08 00:47 被阅读0次

1486.数组异或操作

https://leetcode-cn.com/problems/xor-operation-in-an-array/

难度:简单

题目:

给你两个整数,n 和 start 。

数组 nums 定义为:nums[i] = start + 2*i(下标从 0 开始)且 n == nums.length 。

请返回 nums 中所有元素按位异或(XOR)后得到的结果。

提示:

  • 1 <= n <= 1000
  • 0 <= start <= 1000
  • n == nums.length

示例:

示例 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

分析

这里注意下数据从start开始,每次递增2,计算N次异或后的结果。
我们只需初始化ret = 0,然后每次执行^=操作即可最终获取结果。

解题:

class Solution:
    def xorOperation(self, n, start):
        ret = 0
        for i in range(n):
            ret ^= (start + i * 2)
        return ret

欢迎关注我的公众号: 清风Python,带你每日学习Python算法刷题的同时,了解更多python小知识。

我的个人博客:https://qingfengpython.cn

力扣解题合集:https://github.com/BreezePython/AlgorithmMarkdown

相关文章

网友评论

      本文标题:力扣每日一题:1486.数组异或操作

      本文链接:https://www.haomeiwen.com/subject/nvuydltx.html