12 lines
229 B
Python
12 lines
229 B
Python
with open('../input.text', 'r') as file:
|
|
data = file.read()
|
|
|
|
floor = 0
|
|
for char in data:
|
|
if char == '(':
|
|
floor += 1
|
|
elif char == ')':
|
|
floor -= 1
|
|
|
|
print(f'The instructions took Santa to floor {floor}')
|