diff options
| author | nekineki <nekineki@nekineki.net> | 2022-12-04 17:54:35 +0100 |
|---|---|---|
| committer | nekineki <nekineki@nekineki.net> | 2022-12-05 22:06:54 +0100 |
| commit | 2aa1c53877f00cf214288630401f044c30fc2793 (patch) | |
| tree | 02696da5b1ee1a386ab1c61796cb8a1aa0e1b6ca /2022 | |
| parent | c6a21fed7275a7d4080ddcb65896ceb9e7a940a9 (diff) | |
add template
Diffstat (limited to '2022')
| -rwxr-xr-x | 2022/tpl/asd.py | 22 | ||||
| -rw-r--r-- | 2022/tpl/pzl.txt | 0 | ||||
| -rw-r--r-- | 2022/tpl/ref.txt | 0 |
3 files changed, 22 insertions, 0 deletions
diff --git a/2022/tpl/asd.py b/2022/tpl/asd.py new file mode 100755 index 0000000..2d095e5 --- /dev/null +++ b/2022/tpl/asd.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 + + +filename = "ref.txt" +# filename = "pzl.txt" + +res1 = 0 +res2 = 0 +f = open(filename) +for line in f: + line = line.strip() + + +f.close() +print('res1:', res1) +print('res2:', res2) + diff --git a/2022/tpl/pzl.txt b/2022/tpl/pzl.txt new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/2022/tpl/pzl.txt diff --git a/2022/tpl/ref.txt b/2022/tpl/ref.txt new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/2022/tpl/ref.txt |
