aboutsummaryrefslogtreecommitdiffstats
path: root/data/template.py
diff options
context:
space:
mode:
Diffstat (limited to 'data/template.py')
-rw-r--r--data/template.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/data/template.py b/data/template.py
new file mode 100644
index 0000000..93b6e58
--- /dev/null
+++ b/data/template.py
@@ -0,0 +1,25 @@
+from sys import argv as args
+
+file = open("input.txt")
+sinput = file.read()
+file.close()
+
+def parseLine():
+ return
+
+sinput = [parseLine(l) for l in sinput.split("\n")]
+
+def solve1():
+ return
+
+def solve2():
+ return
+
+def main():
+ if len(args) > 1:
+ if args[1] == "1":
+ solve1()
+ elif args[1] == "2":
+ solve2()
+
+main()