Added links to the pages describing each puzzle
This commit is contained in:
parent
d23e983836
commit
a51e888c3f
2
day01.py
2
day01.py
@ -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))
|
||||
|
||||
2
day02.py
2
day02.py
@ -1,5 +1,7 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
https://adventofcode.com/2025/day/2
|
||||
|
||||
import re
|
||||
from functools import reduce
|
||||
|
||||
|
||||
2
day03.py
2
day03.py
@ -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()]
|
||||
|
||||
Loading…
Reference in New Issue
Block a user