Moved 2022 to own dir

This commit is contained in:
2023-11-30 19:20:34 +02:00
parent e700358bda
commit 6bd452a4ec
16 changed files with 0 additions and 0 deletions

14
2022/16/p.py Normal file
View File

@@ -0,0 +1,14 @@
import os
input = open(os.path.dirname(__file__) +
"/input-demo.txt", "r").readlines()
V = {}
for l in input:
d = l.strip().split()
V[d[1]] = (int(d[4].split('=')[1].split(';')[0]),
d[9:])
print(V)