-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path0665-non-decreasing-array.js
More file actions
39 lines (33 loc) · 942 Bytes
/
0665-non-decreasing-array.js
File metadata and controls
39 lines (33 loc) · 942 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/**
* Non Decreasing Array
* Time Complexity: O(N)
* Space Complexity: O(1)
*/
var checkPossibility = function (nums) {
let violationCounter = 0;
const arrayLength = nums.length;
for (
let currentElementIndex = 0;
currentElementIndex < arrayLength - 1;
currentElementIndex++
) {
const valueAtCurrent = nums[currentElementIndex];
const valueAtNext = nums[currentElementIndex + 1];
if (valueAtCurrent > valueAtNext) {
violationCounter++;
if (violationCounter > 1) {
return false;
}
const hasPrecedingElement = currentElementIndex > 0;
const valueAtPreceding = hasPrecedingElement
? nums[currentElementIndex - 1]
: -Infinity;
if (hasPrecedingElement && valueAtPreceding > valueAtNext) {
nums[currentElementIndex + 1] = valueAtCurrent;
} else {
nums[currentElementIndex] = valueAtNext;
}
}
}
return true;
};