-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathday08.py
executable file
·64 lines (51 loc) · 1.28 KB
/
day08.py
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
#!/usr/bin/env python3
import sys
def deduce_mapping(patterns):
p2d = {} # pattern to digit
for p, plen in patterns:
if plen == 2:
p2d[p] = 1
elif plen == 3:
p2d[p] = 7
elif plen == 4:
p2d[p] = 4
elif plen == 7:
p2d[p] = 8
d2p = {v: k for k, v in p2d.items()} # digit to pattern
for p, plen in patterns:
if p in p2d:
continue
if plen == 5:
# 2 or 3 or 5
if len(p & d2p[1]) == 2:
p2d[p] = 3
elif len(p & d2p[4]) == 3:
p2d[p] = 5
else:
p2d[p] = 2
else:
# 0 or 6 or 9
if len(p & d2p[4]) == 4:
p2d[p] = 9
elif len(p & d2p[7]) == 2:
p2d[p] = 6
else:
p2d[p] = 0
return p2d
# Open the first argument as input or use stdin if no arguments were given
fin = open(sys.argv[1]) if len(sys.argv) > 1 else sys.stdin
total = 0
count = 0
to_count = {2, 4, 3, 7}
for line in fin:
patterns, digits = map(str.split, line.split('|'))
patterns = tuple(map(lambda p: (frozenset(p), len(p)), patterns))
digits = tuple(map(lambda p: (frozenset(p), len(p)), digits))
p2d = deduce_mapping(patterns)
count += sum(l in to_count for _, l in digits)
total += p2d[digits[0][0]] * 1000
total += p2d[digits[1][0]] * 100
total += p2d[digits[2][0]] * 10
total += p2d[digits[3][0]]
print('Part 1:', count)
print('Part 2:', total)