25 lines
561 B
Python
25 lines
561 B
Python
|
#!/bin/python3
|
||
|
import sys
|
||
|
from pprint import pprint
|
||
|
|
||
|
input_f = "input" #sys.argv[1]
|
||
|
|
||
|
with open(input_f) as file:
|
||
|
for line in file:
|
||
|
|
||
|
|
||
|
#########################################
|
||
|
# #
|
||
|
# Part 1 #
|
||
|
# #
|
||
|
#########################################
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
#########################################
|
||
|
# #
|
||
|
# Part 2 #
|
||
|
# #
|
||
|
#########################################
|