aboutsummaryrefslogtreecommitdiffstats
path: root/data
diff options
context:
space:
mode:
Diffstat (limited to 'data')
-rw-r--r--data/template.py25
1 files changed, 0 insertions, 25 deletions
diff --git a/data/template.py b/data/template.py
deleted file mode 100644
index 93b6e58..0000000
--- a/data/template.py
+++ /dev/null
@@ -1,25 +0,0 @@
-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()