-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathadvent16.py
46 lines (38 loc) · 1.1 KB
/
advent16.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
import os
import operator
HERE = os.path.dirname(os.path.abspath(__file__))
clues = {
'children': 3,
'cats': 7,
'samoyeds': 2,
'pomeranians': 3,
'akitas': 0,
'vizslas': 0,
'goldfish': 5,
'trees': 3,
'cars': 2,
'perfumes': 1,
}
def parse_aunts(fileobj):
for line in fileobj:
name, __, props = line.partition(':')
props = {name.strip(): int(count)
for entry in props.split(',')
for name, count in (entry.split(':'),)}
yield name.strip(), props
with open(os.path.join(HERE, 'inputs/input16.txt')) as fileobj:
aunts = list(parse_aunts(fileobj))
aunt = next(name for name, props in aunts
if all(props[k] == clues[k]
for k in props.keys() & clues.keys()))
print('Part 1:', aunt)
comps = {
'cats': operator.gt,
'trees': operator.gt,
'pomeranians': operator.lt,
'goldfish': operator.lt,
}
aunt = next(name for name, props in aunts
if all(comps.get(k, operator.eq)(props[k], clues[k])
for k in props.keys() & clues.keys()))
print('Part 2:', aunt)