JavaScript中最多减少的相邻元素

我们给定了一个整数数组,并且要求我们找到它的任意两个相邻元素之间的最大绝对差。

例如:如果输入数组是-

const arr = [2, 4, 1, 0];

那么输出应该是-

const output = 3;

因为最大绝对差在元素4和1。

示例

为此的代码将是-

const arr = [2, 4, 1, 0];
const maximumDecreasing = (arr = []) => {
   const res = arr.slice(1).reduce((acc, val, ind) => {
      return Math.max(Math.abs(arr[ind] − val), acc);
   }, 0);
   return res;
};
console.log(maximumDecreasing(arr));

输出结果

控制台中的输出将是-

3
猜你喜欢