This website works better with JavaScript
Trang chủ
Khám phá
Trợ giúp
Đăng ký
Đăng nhập
Tankernn
/
aoc-2021
Xem
1
Star
0
Fork
0
Các tập tin
Các vấn đề
0
Yêu cầu khéo về
0
Wiki
Tree:
e85d33ae81
Branches
Tags
master
aoc-2021
/
util.py
util.py
100 B
Lịch sử
Raw
1
2
3
def get_input(p, fn=id):
with open(p) as f:
return [fn(line) for line in f.readlines()]