diff options
| -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 |
