diff options
| author | nekineki <nekineki@nekineki.net> | 2022-12-11 22:17:52 +0100 |
|---|---|---|
| committer | nekineki <nekineki@nekineki.net> | 2022-12-11 22:17:52 +0100 |
| commit | 1732724c991604703a3bf7811789a426f1bcb750 (patch) | |
| tree | 2bffcc548cba32e6bd40cc2fd71213c93523eb2b /2022/tpl.py | |
| parent | 18c3df253973750ed7911e259ee9beac68715004 (diff) | |
update template
Diffstat (limited to '2022/tpl.py')
| -rwxr-xr-x | 2022/tpl.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/2022/tpl.py b/2022/tpl.py new file mode 100755 index 0000000..23c5987 --- /dev/null +++ b/2022/tpl.py @@ -0,0 +1,22 @@ +#!/usr/bin/env python3 + +# import numpy as np +from functools import reduce +from re import findall +from copy import deepcopy +import sys + +filename = "in/day .ref" +# filename = "in/day .pzl" +data = open(filename).read() +lines = [line for line in data.rstrip('\n').split('\n')] +print(lines) + +res1 = 0 +res2 = 0 + + + +print('res1:', res1) +print('res2:', res2) + |
