LeetCode——数组异或操作

LeetCode-数组异或操作

题目描述

给你一个二叉树,请你返回其按层序遍历得到的节点值。 (即逐层地,从左到右访问所有节点)。

如:

例一:
		   输入:n = 5, start = 0
           输出:8
		   解释:数组 nums 为 [0, 2, 4, 6, 8],其中 (0 ^ 2 ^ 4 ^ 6 ^ 8) = 8"^" 为按位异或 XOR 运算符。
例二:
		   输入:n = 4, start = 3
           输出:8
           解释:数组 nums 为 [3, 5, 7, 9],其中 (3 ^ 5 ^ 7 ^ 9) = 8.
例三:
			输入:n = 1, start = 7
			输出:7
例四:
			输入:n = 10, start = 5
			输出:2

提示:
1 <= n <= 1000
0 <= start <= 1000
n == nums.length

代码实现

class Solution(object):
    def xorOperation(self, n, start):
        """
        :type n: int
        :type start: int
        :rtype: int
        """
        nums = []
        result = 0
        for i in range(n):
            nums.append(start + 2 * i)
            if i == 0:
                result = nums[0]
            if i == 1:
                result = nums[0] ^ nums[1]
            elif i > 1:
                result = result ^ nums[i]
        return result

题信息来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/xor-operation-in-an-array

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值