-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmy_solution.js
96 lines (80 loc) · 2.17 KB
/
my_solution.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/**
* @param {number[][]} matrix
* @return {void} Do not return anything, modify matrix in-place instead.
*/
const setZeroes = (matrix) => {
console.log(`rowL:${matrix.length}, colL:${matrix[0].length}`)
console.log(matrix)
const expand = (row, col) => {
// if (row < 0 || col < 0 || row === matrix.length || col === matrix[0].length) {
// console.log(`--> row:${row}, col:${col} - EXIT`)
// return;
// }
let directions = [[0, 1], [1, 0], [0, -1], [-1, 0]];
console.log(matrix)
for (let [r, c] of directions) {
let factor = 1;
// while (undefined !== matrix[row + (r * factor)][col + (c * factor)]) {
// let newR = row + (r * factor);
// let newC = col + (c * factor);
while (
// (newR >= 0) &&
// (newC >= 0) &&
// (newR < matrix.length) &&
// (newC < matrix[0].length)
((row + (r * factor)) >= 0) &&
((col + (c * factor)) >= 0) &&
((row + (r * factor)) < matrix.length) &&
((col + (c * factor)) < matrix[0].length)
) {
// console.log(`newR:${newR}, newC:${newC}, matrix[r][c]:${matrix[newR][newC]}`)
// matrix[newR][newC] = 0;
matrix[row + (r * factor)][col + (c * factor)] = 0;
factor++;
// console.log(`> newR:${newR}, newC:${newC}`)
}
}
// matrix[row][col] = 0;
// dfs(row, col + 1);
// dfs(row + 1, col);
// dfs(row, col - 1);
// dfs(row - 1, col);
}
coordinate = [];
for (let row = 0; row < matrix.length; row++) {
for (let col = 0; col < matrix[row].length; col++) {
if (matrix[row][col] === 0) {
coordinate.push([row, col])
console.log(`> row:${row}, col:${col}`)
}
}
}
console.log("coordinate")
console.log(coordinate)
for (let [row, col] of coordinate) {
console.log(`-> row:${row}, col:${col}`)
expand(row, col)
}
console.log("matrix")
console.log(matrix)
};
// setZeroes([
// [1, 1, 1],
// [1, 0, 1],
// [1, 1, 1]
// ]);
// [
// [1, 0, 1],
// [0, 0, 0],
// [1, 0, 1]
// ]
setZeroes([
[0, 1, 2, 0],
[3, 4, 5, 2],
[1, 3, 1, 5]
]);
// [
// [0, 0, 0, 0],
// [0, 4, 5, 0],
// [0, 3, 1, 0]
// ]