-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpart_one.py
executable file
·38 lines (30 loc) · 1020 Bytes
/
part_one.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
#!/usr/bin/env python3
import core
WORD = 'XMAS'
def main(options):
acc = 0
cols, rows, data = core.load_input(options.filename)
# By rows
for sequence in core.iterate_by_rows(cols, rows, data):
text = core.as_string(sequence)
acc += text.count(WORD)
acc += text[::-1].count(WORD)
# By cols
for sequence in core.iterate_by_cols(cols, rows, data):
text = core.as_string(sequence)
acc += text.count(WORD)
acc += text[::-1].count(WORD)
# Up -> Down
for sequence in core.iterate_diagonal_down(cols, rows, data):
text = core.as_string(sequence)
acc += text.count(WORD)
acc += text[::-1].count(WORD)
# Down -> Up
for sequence in core.iterate_diagonal_up(cols, rows, data):
text = core.as_string(sequence)
acc += text.count(WORD)
acc += text[::-1].count(WORD)
return acc
if __name__ == '__main__':
sol = main(core.get_options())
print(f'[Day 4] Sol. part one is: {sol}')