-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday17_code.py
32 lines (29 loc) · 1.65 KB
/
day17_code.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
import re
from itertools import combinations
root = "C:/Users/aiden/Dropbox/git/adventofcode/"
lines = [l.rstrip('\n') for l in open(root + 'day16_input.txt', 'r').readlines()]
flatten = lambda t: [item for sublist in t for item in sublist]
## Do not know how to do :(
#________________________¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶________
#____________________¶¶¶___________________¶¶¶¶_____
#________________¶¶¶_________________________¶¶¶¶___
#______________¶¶______________________________¶¶¶__
#___________¶¶¶_________________________________¶¶¶_
#_________¶¶_____________________________________¶¶¶
#________¶¶_________¶¶¶¶¶___________¶¶¶¶¶_________¶¶
#______¶¶__________¶¶¶¶¶¶__________¶¶¶¶¶¶_________¶¶
#_____¶¶___________¶¶¶¶____________¶¶¶¶___________¶¶
#____¶¶___________________________________________¶¶
#___¶¶___________________________________________¶¶_
#__¶¶____________________¶¶¶¶____________________¶¶_
#_¶¶_______________¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶______________¶¶__
#_¶¶____________¶¶¶¶___________¶¶¶¶¶___________¶¶___
#¶¶¶_________¶¶¶__________________¶¶__________¶¶____
#¶¶_________¶______________________¶¶________¶¶_____
#¶¶¶______¶________________________¶¶_______¶¶______
#¶¶¶_____¶_________________________¶¶_____¶¶________
#_¶¶¶___________________________________¶¶__________
#__¶¶¶________________________________¶¶____________
#___¶¶¶____________________________¶¶_______________
#____¶¶¶¶______________________¶¶¶__________________
#_______¶¶¶¶¶_____________¶¶¶¶¶_____________________