在JavaScript中找到两个数组的连续性
我们需要编写一个包含两个数字数组的JavaScript函数。如果两个数组在组合和改组后可以形成连续序列,则函数应返回true,否则返回false。
例如:如果数组是-
const arr1 = [4, 6, 2, 9, 3]; const arr2 = [1, 5, 8, 7];
然后输出应为true。
因此,让我们为该函数编写代码-
示例
为此的代码将是-
const arr1 = [4, 6, 2, 9, 3];
const arr2 = [1, 5, 8, 7];
const canFormSequence = (arr1, arr2) => {
const combined = [...arr1, ...arr2];
if(combined.length < 2){
return true;
};
combined.sort((a, b) => a-b);
const commonDifference = combined[0] - combined[1];
for(let i = 1; i < combined.length-1; i++){
if(combined[i] - combined[i+1] === commonDifference){
continue;
};
return false;
};
return true;
};
console.log(canFormSequence(arr1, arr2));输出结果
控制台中的输出将为-
true
热门推荐
10 广西考试祝福语结婚简短
11 猪年祝福语简短小孩
12 元旦祝福语送长辈简短
13 恭喜二宝祝福语简短
14 祝福语暖心话简短
15 国庆中秋祝福语简短兄弟
16 朋友订婚的祝福语简短
17 送弟弟中秋祝福语简短
18 爱生日祝福语简短独特