45 lines
1.1 KiB
Python
Executable File
45 lines
1.1 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
def day01Part1():
|
|
with open("data/input.txt","r") as f:
|
|
myInput=f.read().splitlines()
|
|
|
|
counter=0
|
|
previous=int(myInput[0])
|
|
for item in myInput[1:]:
|
|
if int(item) > int(previous):
|
|
# print(previous, item, 'Increased')
|
|
counter=counter+1
|
|
if int(item) < int(previous):
|
|
# print(previous, item,'decreased')
|
|
pass
|
|
previous=item
|
|
|
|
print('Part1: Number of increases: ', counter)
|
|
|
|
def day01Part2():
|
|
with open("data/input.txt","r") as f:
|
|
myInput=f.read().splitlines()
|
|
counter=0
|
|
previous=999999
|
|
|
|
i=0
|
|
for item in myInput:
|
|
if i < len(myInput)-2:
|
|
total=int(myInput[i])+int(myInput[i+1])+int(myInput[i+2])
|
|
if previous < total:
|
|
print(previous, total, 'Increased')
|
|
counter=counter+1
|
|
else:
|
|
print(previous, total,'decreased')
|
|
i=i+1
|
|
previous=total
|
|
|
|
print('Part2: Number of increases: :', counter)
|
|
|
|
# if the item before is the same as the one after curent it will say no change --proto '=https' --tlsv1.2 -sSf https://get-ghcup.haskell.org | sh than it will say no change
|
|
# A comment
|
|
if __name__=='__main__':
|
|
day01Part1()
|
|
day01Part2()
|
|
|