advent_of_code/1/1.py

17 lines
315 B
Python
Raw Normal View History

2021-12-06 01:27:38 +01:00
#!/usr/bin/env python
# 2021 - Advent Of Code 1
count = 0
with open('input.txt') as f:
previous_value = int(f.readline())
for line in f:
current_value = int(line)
if current_value > previous_value:
count += 1
previous_value = current_value
print(f'count: {count}')