-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path16-Sub-array-sort.js
36 lines (31 loc) · 1.01 KB
/
16-Sub-array-sort.js
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
function isOutOfOrder(currentNum, index, array) {
if (index === 0) return currentNum > array[index + 1];
if (index === array.length - 1) return currentNum < array[index - 1];
return currentNum < array[index - 1] || currentNum > array[index + 1];
}
function subarraySort(array) {
// Write your code here.
let minOutOfOrder = Infinity;
let maxOutOfOrder = -Infinity;
for (let index = 0; index < array.length; index++) {
const currentNum = array[index];
if (isOutOfOrder(currentNum, index, array)) {
minOutOfOrder = Math.min(currentNum, minOutOfOrder);
maxOutOfOrder = Math.max(currentNum, maxOutOfOrder);
}
}
if (minOutOfOrder === Infinity) {
return [-1, -1];
}
let leftIdx = 0;
let rightIdx = array.length - 1;
while (array[leftIdx] <= minOutOfOrder) {
leftIdx++;
}
while (array[rightIdx] >= maxOutOfOrder) {
rightIdx--;
}
return [leftIdx, rightIdx];
}
// Do not edit the line below.
exports.subarraySort = subarraySort;