Problem Description
Given an encoded integer array encoded
of length n - 1
, which is derived from a hidden integer array arr
such that encoded[i] = arr[i] XOR arr[i + 1]
, and an integer first
that represents the first element of arr
, return the original array arr
.
Key Insights
- The encoded array is derived from the original array using the XOR operation.
- Knowing the first element of the original array allows us to compute the rest of the elements using the property of XOR:
arr[i + 1] = encoded[i] XOR arr[i]
. - The solution is linear in time complexity since we only need to iterate through the
encoded
array once.
Space and Time Complexity
Time Complexity: O(n)
Space Complexity: O(n)
Solution
To reconstruct the original array arr
, we initialize it with the first element provided. We then iterate through the encoded
array, using the XOR operation to derive each subsequent element of arr
based on the previous element and the current encoded value. The XOR operation has the property that it can reverse the operation if one of the operands is known.