This website works better with JavaScript
Home
Esplora
Aiuto
Registrati
Accedi
Tankernn
/
aoc-2021
Segui
1
Vota
0
Forka
0
File
Problemi
0
Pull Requests
0
Wiki
Albero (Tree):
e85d33ae81
Rami (Branch)
Tag
master
aoc-2021
/
util.py
util.py
100 B
Cronologia
Originale
1
2
3
def get_input(p, fn=id):
with open(p) as f:
return [fn(line) for line in f.readlines()]