1486. XOR Operation in an Array
LeetCode 1486. XOR Operation in an Array
Description
Given an integer n and an integer start.
Define an array nums where nums[i] = start + 2*i (0-indexed) and n == nums.length.
Return the bitwise XOR of all elements of nums.
Example 1:
Input: n = 5, start = 0
Output: 8
Explanation: Array nums is equal to [0, 2, 4, 6, 8] where (0 ^ 2 ^ 4 ^ 6 ^ 8) = 8.
Where "^" corresponds to bitwise XOR operator.Example 2:
Input: n = 4, start = 3
Output: 8
Explanation: Array nums is equal to [3, 5, 7, 9] where (3 ^ 5 ^ 7 ^ 9) = 8.Example 3:
Input: n = 1, start = 7
Output: 7Example 4:
Constraints:
1 <= n <= 10000 <= start <= 1000n == nums.length
Tags
Array, Bit Manipulation
Solution
We can reduce the time complexity through mathematical operations.
Before we do that, let's review some characters of XOR:
;
;
;
;
;
.
To make use of the 5th property of XOR, we mutate the required function to:
In this formula, e is the lowest bit and it is equal to 1 if and only if n and start are both odd numbers.
To obtain , based on the property 6, we only need to compute . Note that the pattern of XOR of the first n numbers is n, 1, n+1, 0.
Finally, we return the recovered result temp * 2 + e.
Complexity
Time complexity:
Space complexity:
Code
Reference
Last updated
Was this helpful?