-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsolution.js
48 lines (40 loc) · 1.27 KB
/
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
const solve = (maze) => {
const used = [];
let start = [];
for (let i = 0; i < maze.length; i++) {
for (let j = 0; j < maze[0].length; j++) {
if (maze[i][j] === 'S') {
start = [i, j];
break;
}
}
}
const checkMovement = (coords) => {
return (
maze[coords[0]] &&
maze[coords[0]][coords[1]] &&
maze[coords[0]][coords[1]] !== 'W'
);
};
const scape = (maze, currentPositon) => {
used.push(currentPositon.join(','));
const [currentRow, currentColumn] = currentPositon;
const up = [currentRow, currentColumn + 1];
const down = [currentRow, currentColumn - 1];
const left = [currentRow - 1, currentColumn];
const right = [currentRow + 1, currentColumn];
const possibleMovements = [];
if (checkMovement(up)) possibleMovements.push(up);
if (checkMovement(down)) possibleMovements.push(down);
if (checkMovement(left)) possibleMovements.push(left);
if (checkMovement(right)) possibleMovements.push(right);
return possibleMovements.some(
(movement) =>
maze[movement[0]][movement[1]] === 'E' ||
(!used.includes(movement.join(',')) && scape(maze, movement)),
);
};
const possible = scape(maze, start);
return possible;
};
module.exports = { solve };