1486. XOR Operation in an Array

Обновлено: 2024-03-12
1 мин
[]

Содержание

LeetCode problem 1486

class Solution:
    def xorOperation(self, n: int, start: int) -> int:
        return reduce(xor, ((start + 2 * i) for i in range(n)))