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
|
#!/usr/bin/env python
|
||||||
|
|
||||||
|
# https://adventofcode.com/2025/day/1
|
||||||
|
|
||||||
f = open("day01input.txt", "r")
|
f = open("day01input.txt", "r")
|
||||||
a = f.readlines()
|
a = f.readlines()
|
||||||
b = list(map(str.strip, a))
|
b = list(map(str.strip, a))
|
||||||
|
|||||||
2
day02.py
2
day02.py
@ -1,5 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
|
https://adventofcode.com/2025/day/2
|
||||||
|
|
||||||
import re
|
import re
|
||||||
from functools import reduce
|
from functools import reduce
|
||||||
|
|
||||||
|
|||||||
2
day03.py
2
day03.py
@ -1,5 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
|
https://adventofcode.com/2025/day/3
|
||||||
|
|
||||||
f = open("day03input.txt", "r")
|
f = open("day03input.txt", "r")
|
||||||
#f = open("testinput.txt", "r")
|
#f = open("testinput.txt", "r")
|
||||||
d = [l.strip() for l in f.readlines()]
|
d = [l.strip() for l in f.readlines()]
|
||||||
|
|||||||
2
day04.py
2
day04.py
@ -1,5 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
|
https://adventofcode.com/2025/day/4
|
||||||
|
|
||||||
f = open("day04input.txt", "r")
|
f = open("day04input.txt", "r")
|
||||||
#f = open("testinput.txt", "r")
|
#f = open("testinput.txt", "r")
|
||||||
d = [l.strip() for l in f.readlines()]
|
d = [l.strip() for l in f.readlines()]
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user