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

12 lines
182 B
Python

#!/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)