This commit is contained in:
Dmitry Fedotov
2024-12-06 21:54:17 +03:00
commit f341fe238e
7 changed files with 1108 additions and 0 deletions

Binary file not shown.

Binary file not shown.

8
aoclib/aoclib.py Normal file
View File

@@ -0,0 +1,8 @@
class Input(object):
def __init__(self, filename):
with open(filename, 'r') as f:
self._lines = list(l.strip() for l in f.readlines())
def lines(self):
return self._lines