Skip to content

Advent of Code 2018

Day 01
1
2
3
4
with open("day01_input.txt", "r") as f:
    changes = [int(i) for i in f.read().splitlines()]

print(sum(changes))