Find The Original Array of Prefix Xor — LeetCode 2433 Python Solution

MediumBit ManipulationArray
Problem
#2433
Reading time
2 min

The problem

You are given an integer array pref of size n. Find and return the array arr of size n that satisfies: pref[i] = arr[0] ^ arr[1] ^ ...

Example

Input
pref = [5,2,0,3,1]
Output
[5,7,2,3,2]
Explanation
From the array [5,7,2,3,2] we have the following:

Python solution

Python
class Solution:
    def findArray(self, pref: List[int]) -> List[int]:
        return [a ^ b for a, b in pairwise([0] + pref)]

Complexity

MeasureComplexity
TimeO(n), where n is the length of the prefix XOR array
SpaceO(1) auxiliary

Pattern: Bit Manipulation

Use XOR, masks and the low-bit trick to replace whole data structures with an integer. LeetCode 2433. Find The Original Array of Prefix Xor is filed here on both counts: the reference solution below belongs to the algorithm family this hub collects, and LeetCode tags it Bit Manipulation.

The bit manipulation guide has the Python template for the pattern and the 194 LeetCode problems that use it.

Related problems

Frequently asked questions

How hard is LeetCode 2433. Find The Original Array of Prefix Xor?
LeetCode 2433. Find The Original Array of Prefix Xor is rated Medium on LeetCode.
What is the time complexity of LeetCode 2433. Find The Original Array of Prefix Xor?
The Python solution on this page runs in O(n), where n is the length of the prefix XOR array.
What is the space complexity of LeetCode 2433. Find The Original Array of Prefix Xor?
The Python solution on this page uses O(1) auxiliary space.
What topics does LeetCode 2433. Find The Original Array of Prefix Xor cover?
LeetCode 2433. Find The Original Array of Prefix Xor is tagged Bit Manipulation and Array on LeetCode.

Stuck on problems like this in a live interview?

Stealth Interview is a desktop app for macOS and Windows. It reads the problem off your screen and returns a working solution with a step-by-step explanation and its time and space complexity — invisible to screen sharing.

Get Stealth Interview