在 JavaScript 中查找两个数组的连续性
我们需要编写一个 JavaScript 函数,该函数接受两个数字数组。并且该函数应当在可以结合并洗牌的情况下返回真,否则返回假。
例如:如果数组是 -
const arr1 = [4, 6, 2, 9, 3]; const arr2 = [1, 5, 8, 7];
那么输出应该是真。
因此,让我们编写此函数的代码 -
示例
代码将是 -
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
广告