AdventOfCode/solution.py

25 lines
552 B
Python

#!/bin/python3
import sys
from pprint import pprint
input_f = sys.argv[1]
#########################################
# #
# Part 1 #
# #
#########################################
with open(input_f) as file:
for line in file:
#########################################
# #
# Part 2 #
# #
#########################################