30:00
Given an integer array nums, return the maximum result of nums[i] XOR nums[j], where 0 <= i <= j < n.
1≤nums.length≤2×1051 \leq \text{nums.length} \leq 2 \times 10^51≤nums.length≤2×105
0≤nums[i]≤231−10 \leq \text{nums}[i] \leq 2^{31} - 10≤nums[i]≤231−1
Starting with 6 numbers. Will check bit by bit from MSB.
00000000
(00000000)