From 5ecfa08733dc8030625c447422a95343a2ceba2c Mon Sep 17 00:00:00 2001 From: Pascal Lais Date: Sun, 28 Nov 2021 17:55:18 +0100 Subject: [PATCH] Add template code --- template.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 template.py diff --git a/template.py b/template.py new file mode 100644 index 0000000..3293a7d --- /dev/null +++ b/template.py @@ -0,0 +1,16 @@ +#!/usr/bin/python3 + +def part_1(input): + pass + + +def part_2(input): + pass + +input = list(); +with open('input.txt') as fp: + input = fp.readlines() + +part_1(input) +part_2(input) +