Find The Original Array of Prefix Xor — LeetCode 2433 Python Solution
- Problem
- #2433
- Pattern
- Bit Manipulation
- Reading time
- 2 min
- Source
- leetcode.com
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
class Solution:
def findArray(self, pref: List[int]) -> List[int]:
return [a ^ b for a, b in pairwise([0] + pref)]Complexity
| Measure | Complexity |
|---|---|
| Time | O(n), where n is the length of the prefix XOR array |
| Space | O(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.