-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path11-1.dart
52 lines (48 loc) · 1020 Bytes
/
11-1.dart
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
import 'dart:io';
import 'dart:math';
List walk(List path) {
int x = 0;
int y = 0;
for (var direction in path) {
switch (direction) {
case "n":
y += 1;
break;
case "ne":
y += 1;
x += 1;
break;
case "se":
x += 1;
break;
case "s":
y -= 1;
break;
case "sw":
x -= 1;
y -= 1;
break;
case "nw":
x -= 1;
break;
default:
print("Unable to parse direction: "+direction);
}
}
return [x, y];
}
int dist_home_from(int x, int y) {
return x.abs() + y.abs() - ( (x+y).abs()-max( x.abs(), y.abs() ) );
}
void main() {
var input;
input = new File('11-input.txt');
input.readAsString().then((input_string) {
var path = input_string.trim().split(",");
var location = walk(path);
int x = location[0]; int y = location[1];
var dist = dist_home_from(x, y);
print("Walked to ($x,$y)");
print("Distance to home: $dist");
});
}