-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday_09.py
62 lines (45 loc) · 1.49 KB
/
day_09.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
from collections import Counter, defaultdict, deque
import aoc_helper
from aoc_helper import (
Grid,
PrioQueue,
SparseGrid,
decode_text,
extract_ints,
extract_iranges,
extract_ranges,
extract_uints,
frange,
irange,
iter,
list,
map,
multirange,
range,
search,
tail_call,
)
raw = aoc_helper.fetch(9, 2023)
def parse_raw(raw: str):
return list(raw.splitlines()).mapped(extract_ints)
data = parse_raw(raw)
def history(row: list[int]) -> int:
diffs = row.windowed(2).starmapped(lambda a, b: b - a)
if all(i == 0 for i in diffs):
return row[-1]
else:
return row[-1] + history(diffs)
# providing this default is somewhat of a hack - there isn't any other way to
# force type inference to happen, AFAIK - but this won't work with standard
# collections (list, set, dict, tuple)
def part_one(data=data):
return data.mapped(history).sum()
aoc_helper.lazy_test(day=9, year=2023, parse=parse_raw, solution=part_one)
# providing this default is somewhat of a hack - there isn't any other way to
# force type inference to happen, AFAIK - but this won't work with standard
# collections (list, set, dict, tuple)
def part_two(data=data):
return data.mapped(lambda i: i[::-1]).mapped(history).sum()
aoc_helper.lazy_test(day=9, year=2023, parse=parse_raw, solution=part_two)
aoc_helper.lazy_submit(day=9, year=2023, solution=part_one, data=data)
aoc_helper.lazy_submit(day=9, year=2023, solution=part_two, data=data)