Add python implementation of day1, after the fact.

This commit is contained in:
Bert Peters
2015-12-05 20:34:30 +01:00
parent 959aa38785
commit 16a0640a07
2 changed files with 18 additions and 0 deletions

1
day1-input.txt Normal file

File diff suppressed because one or more lines are too long

17
day1.py Normal file
View File

@@ -0,0 +1,17 @@
import fileinput
floor = 0
seenBasement = False
for line in fileinput.input():
for idx, c in enumerate(line.strip()):
if c == '(':
floor += 1
else:
floor -= 1
if not seenBasement and floor == -1:
seenBasement = True
print "Basement reached at", idx + 1
print "Finally arrived at", floor