Given an integer array nums, return the maximum result of nums[i] XOR nums[j], where 0 <= i <= j < n.
是的,題目非常短!
給一個整數矩陣nums,我們要返回nums[i] XOR nums[j] 的最大結果,其中0 <=i <= j < n。
我的解題思路:
class Solution {
public int findMaximumXOR(int[] nums) {
int max =0; // 存儲最大XOR值
int n = nums.length;
// 雙層for迴圈遍歷
for (int i = 0; i < n; i++) {
for (int j = i; j < n; j++) {
int xor = nums[i] ^ nums[j]; // nums[i] XOR nums[j]
if (xor > max) {
max = xor;
}
}
}
return max;
}
}
很輕鬆的成功啦~~本來還很擔心XOR要自己寫...