1
0
Fork 0
advent-of-code/2015/aoc_d1p1.py

13 lines
182 B
Python
Raw Permalink Normal View History

2024-02-08 09:55:40 +01:00
#!/usr/bin/env python
floor = 0
with open("inputd1.txt", "r") as f:
for input in f:
for c in input:
if c == "(":
floor += 1
elif c == ")":
floor -= 1
print(floor)