AdventOfCode/2017/07/solution.py

25 lines
552 B
Python
Raw Normal View History

2024-11-16 08:05:16 +01:00
#!/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 #
# #
#########################################