Added links to the pages describing each puzzle

This commit is contained in:
Tobias Radloff 2025-12-04 13:24:22 +01:00
parent d23e983836
commit a51e888c3f
No known key found for this signature in database
4 changed files with 8 additions and 0 deletions

View File

@ -1,5 +1,7 @@
#!/usr/bin/env python
# https://adventofcode.com/2025/day/1
f = open("day01input.txt", "r")
a = f.readlines()
b = list(map(str.strip, a))

View File

@ -1,5 +1,7 @@
#!/usr/bin/env python
https://adventofcode.com/2025/day/2
import re
from functools import reduce

View File

@ -1,5 +1,7 @@
#!/usr/bin/env python
https://adventofcode.com/2025/day/3
f = open("day03input.txt", "r")
#f = open("testinput.txt", "r")
d = [l.strip() for l in f.readlines()]

View File

@ -1,5 +1,7 @@
#!/usr/bin/env python
https://adventofcode.com/2025/day/4
f = open("day04input.txt", "r")
#f = open("testinput.txt", "r")
d = [l.strip() for l in f.readlines()]