-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathday13.py
executable file
·57 lines (39 loc) · 1.04 KB
/
day13.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
#!/usr/bin/env python3
import sys
from operator import itemgetter
def fold(sheet, axis, vertical=False):
folded = set()
for x, y in sheet:
if vertical:
if x > axis:
x = axis - (x - axis)
elif y > axis:
y = axis - (y - axis)
folded.add((x, y))
return folded
def print_sheet(sheet):
maxx = max(map(itemgetter(0), sheet))
maxy = max(map(itemgetter(1), sheet))
out = ''
for y in range(maxy + 1):
for x in range(maxx + 1):
out += '#' if (x, y) in sheet else ' '
out += '\n'
print(out, end='')
# 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
sheet = set()
for line in fin:
if line == '\n':
break
sheet.add(tuple(map(int, line.split(','))))
line = next(fin)
axis = int(line[line.index('=') + 1:])
sheet = fold(sheet, axis, 'x' in line)
n_points = len(sheet)
print('Part 1:', n_points)
for line in fin:
axis = int(line[line.index('=') + 1:])
sheet = fold(sheet, axis, 'x' in line)
print('Part 2:')
print_sheet(sheet)