fixed a typo

This commit is contained in:
Tobias Radloff 2025-12-02 10:17:17 +01:00
parent 2c739b8f5f
commit dc58a0fa43
No known key found for this signature in database

View File

@ -1,6 +1,6 @@
#!/usr/bin/env python
f = open("day1input.txt", "r")
f = open("day01input.txt", "r")
a = f.readlines()
b = list(map(str.strip, a))
c = list(map(lambda x: -int(x[1:]) if x[0] == "L" else int(x[1:]), b))