add day 9

This commit is contained in:
Dmitry Fedotov
2024-12-29 15:21:53 +03:00
parent 19bd3221b3
commit c5d735efde
6 changed files with 196 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
class Input(object):
def __init__(self, filename):
with open(filename, 'r') as f:
self._raw = f.read()
self._raw = f.read().strip()
def raw(self):
return self._raw