AdventOfCode/solution.py

28 lines
596 B
Python

#!/bin/python3
import sys,re
from pprint import pprint
input_f = 'test'
part = 1
#########################################
# #
# Part 1 #
# #
#########################################
if part == 1
with open(input_f) as file:
for line in file:
#########################################
# #
# Part 2 #
# #
#########################################
if part == 2:
exit()