Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/AxlLind/AdventOfCode
/ main
Function
main
2018/src/06.py:28–30 ·
view source on GitHub ↗
(indata: str)
Source
from the content-addressed store, hash-verified
26
27
@aoc.main(
'06'
)
28
def
main(indata: str):
29
points = [[int(i)
for
i in l.split(
', '
)]
for
l in indata.split(
'\n'
)]
30
return
part1(points), part2(points)
31
32
if
__name__ ==
"__main__"
:
33
main()
Callers
1
06.py
File · 0.70
Calls
2
part1
Function · 0.70
part2
Function · 0.70
Tested by
no test coverage detected