This website works better with JavaScript
Home
Explore
Help
Register
Sign In
Tankernn
/
aoc-2021
Watch
1
Star
0
Fork
0
Files
Issues
0
Pull Requests
0
Wiki
Tree:
e85d33ae81
Branches
Tags
master
aoc-2021
/
util.py
util.py
100 B
History
Raw
1
2
3
def
get_input
(p, fn=id)
:
with
open(p)
as
f:
return
[fn(line)
for
line
in
f.readlines()]