Maximum Xor Of Two Numbers In An Array
medium
1. Given an integer array nums. 2. return the maximum result of nums[i] XOR nums[j], where 0
Constraints
1. 1 <= nums.length <= 2 * 10^5 2. 0 <= nums[i] <= 2^31 - 1
Format
Input
Input is managed for you
Output
Output is managed for you
Example
Sample Input
6
3
10
5
25
2
8
Sample Output
28