diff options
| author | 2022-12-11 13:48:39 +0100 | |
|---|---|---|
| committer | 2022-12-11 13:49:10 +0100 | |
| commit | d60f6dc50ea3ea7066fc5e267076276939e2cbc2 (patch) | |
| tree | 08544e7b3c880d65fb279ad749ab6769372e797b /aoc/template | |
| parent | 43c89839d73a4da4a14e0853f161f7f5362e5638 (diff) | |
| download | 2022-d60f6dc50ea3ea7066fc5e267076276939e2cbc2.tar.gz 2022-d60f6dc50ea3ea7066fc5e267076276939e2cbc2.tar.bz2 2022-d60f6dc50ea3ea7066fc5e267076276939e2cbc2.zip | |
Day 9 [WIP]
Diffstat (limited to 'aoc/template')
| -rw-r--r-- | aoc/template/__init__.py | 16 | ||||
| -rw-r--r-- | aoc/template/example.txt | 0 | ||||
| -rw-r--r-- | aoc/template/input.txt | 0 |
3 files changed, 16 insertions, 0 deletions
diff --git a/aoc/template/__init__.py b/aoc/template/__init__.py new file mode 100644 index 0000000..05b2b45 --- /dev/null +++ b/aoc/template/__init__.py | |||
| @@ -0,0 +1,16 @@ | |||
| 1 | # -*- coding: utf-8 -*- | ||
| 2 | from abc import ABC | ||
| 3 | |||
| 4 | from aoc import BaseAssignment | ||
| 5 | |||
| 6 | |||
| 7 | class Assignment(BaseAssignment, ABC): | ||
| 8 | pass | ||
| 9 | |||
| 10 | |||
| 11 | class AssignmentOne(Assignment): | ||
| 12 | pass | ||
| 13 | |||
| 14 | |||
| 15 | class AssignmentTwo(Assignment): | ||
| 16 | pass | ||
diff --git a/aoc/template/example.txt b/aoc/template/example.txt new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/aoc/template/example.txt | |||
diff --git a/aoc/template/input.txt b/aoc/template/input.txt new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/aoc/template/input.txt | |||
