Initial commit with day 1, part 1.
This commit is contained in:
commit
34121bfb96
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
*~
|
||||
|
2000
2021/1/input
Normal file
2000
2021/1/input
Normal file
File diff suppressed because it is too large
Load Diff
19
2021/1/main.py
Normal file
19
2021/1/main.py
Normal file
@ -0,0 +1,19 @@
|
||||
with open('input', 'r') as fp:
|
||||
last = int(fp.readline().rstrip())
|
||||
|
||||
increment = 0
|
||||
decrement = 0
|
||||
same = 0
|
||||
|
||||
for line in fp:
|
||||
amt = int(line)
|
||||
if(amt > last):
|
||||
increment = increment + 1
|
||||
elif(amt < last):
|
||||
decrement = decrement + 1
|
||||
else:
|
||||
same = same + 1
|
||||
|
||||
last = amt
|
||||
|
||||
print increment, ",", decrement, ",", same
|
Loading…
Reference in New Issue
Block a user