a = [121, 144, 19, 161, 19, 144, 19, 11]
b = [121, 14641, 20736, 361, 25921, 361, 20736, 361] 返回 true,因为 b[] 具有元素的平方值在 a[] 中,无论顺序如何。
这是我尝试过的...
static boolean comp(int a[], int b[]) {
int x = 0;
if (a.equals(b)) {
for (int i : a) {
for (int j : b) {
if (a[i] == b[j] * b[j]) {
x++;
} else {
x--;
}
}
}
} else {
return false;
}
if (x == a.length) {
return true;
} else {
return false;
}
}
幕布斯7119047
狐的传说
holdtom
慕斯王
繁花不似锦
婷婷同学_
相关分类