-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path19-1.js
71 lines (64 loc) · 2.3 KB
/
19-1.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
fs = require('fs');
function printAnswer(letters) {
console.log("Navigated through the maze and found letters "+letters);
}
fs.readFile("19-input.txt", "utf8", function (err, data) {
const maze = {
'matrix': data.split("\n").map(x => x.split("")),
'height': function() { return this.matrix.length-1 },
'width': function() { return this.matrix[0].length-1 },
'at': function (p) {
if (p.y > this.height || p.y < 0 || p.x > this.width || p.x < 0) {
return "END";
}
return this.matrix[p.y][p.x];
}
}
var up = function (p) { return { "x": p.x, "y": p.y-1 } },
down = function (p) { return { "x": p.x, "y": p.y+1 } },
left = function (p) { return { "x": p.x-1, "y": p.y } },
right = function (p) { return { "x": p.x+1, "y": p.y } };
var letters = "";
var mazeChars = "|+-"
// Find the starting point
var p = {"x": 0, "y": 0}, direction = down;
while (maze.at(p) != '|') {
p = right(p);
}
// Navigate through the maze
while (1) {
// Walk in current direction until we must turn
while (maze.at(direction(p)) != ' ') {
p = direction(p);
if (maze.at(direction(p)) == "END") {
printAnswer(letters);
return;
}
if ( !(mazeChars.includes( maze.at(p) ) )) {
letters += maze.at(p);
}
}
// Turning
if (direction == up || direction == down) {
// See if it's possible to turn left or right
if (maze.at(left(p)) == '-') {
direction = left;
} else if (maze.at(right(p)) == '-') {
direction = right;
} else { // Nowhere else to go, must be at the end of maze
printAnswer(letters);
return;
}
} else if (direction == left || direction == right) {
// See if it's possible to turn up or down
if (maze.at(up(p)) == '|') {
direction = up;
} else if (maze.at(down(p)) == '|' ) {
direction = down;
} else { // Nowhere else to go, must be at the end of maze
printAnswer(letters);
return;
}
}
}
});