-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathspiralOrder.ts
50 lines (38 loc) · 936 Bytes
/
spiralOrder.ts
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
40
41
42
43
44
45
46
47
48
49
50
type SpiralOrder = (matrix: number[][]) => number[];
/**
* Accepted
*/
export const spiralOrder: SpiralOrder = (matrix) => {
const result = [];
// rows, columns
const [m, n] = [matrix.length, matrix[0].length];
// actions
let [up, down, left, right] = [0, m - 1, 0, n - 1];
while (Number.POSITIVE_INFINITY) {
// up
for (let col = left; col <= right; col++) {
result.push(matrix[up][col]);
}
up += 1;
if (up > down) break;
// right
for (let row = up; row <= down; row++) {
result.push(matrix[row][right]);
}
right -= 1;
if (right < left) break;
// down
for (let col = right; col >= left; col--) {
result.push(matrix[down][col]);
}
down -= 1;
if (down < up) break;
// left
for (let row = down; row >= up; row--) {
result.push(matrix[row][left]);
}
left += 1;
if (left > right) break;
}
return result;
};