严格递增或递减数组 - JavaScript
在数学中,严格的递增函数是指图像中描绘的值始终递增的函数。类似地,严格递减函数是指图像中描绘的值始终递减的函数。
我们需要编写一个 JavaScript 函数,该函数接收一个数字数组,如果数组严格递增或严格递减,则返回 true,否则返回 false。
示例
以下是代码 −
const arr = [12, 45, 6, 4, 23, 23, 21, 1]; const arr2 = [12, 45, 67, 89, 123, 144, 2656, 5657]; const sameSlope = (a, b, c) => (b - a < 0 && c - b < 0) || (b - a > 0 && c - b > 0); const increasingOrDecreasing = (arr = []) => { if(arr.length <= 2){ return true; }; for(let i = 1; i < arr.length - 1; i++){ if(sameSlope(arr[i-1], arr[i], arr[i+1])){ continue; }; return false; }; return true; }; console.log(increasingOrDecreasing(arr)); console.log(increasingOrDecreasing(arr2));
输出
以下是控制台中的输出 −
false true
广告