Maximum Subarray XOR
Solve a hard-level problem for finding the maximum subarray XOR value in an array using tries.
Problem statement
Given an array nums of integers, find the maximum subarray XOR value in the given array.
Example 1
Sample input
nums: [1,2,3,4]
Sample output
7
Explanation
The subarray [3, 4] has maximum XOR value of 7.
Example 2
Sample input
[8,1,2,12,7,6]
Sample output
15
Explanation
The subarray [1,2,12] has the maximum XOR value of 15.
Try it yourself
Try to solve the problem yourself before reading the solution.
Intuition
A brute force solution finds the XOR of all possible subarrays and then extracts the maximum value. We iterate from
Complexity analysis
In the above code, we iterate over the input array in a nested loop, resulting in a time complexity of
Only a single variable, currXOR, is created to store the final answer. So the overall space complexity remains constant—that is,