MCPcopy 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')
28def 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
32if __name__ == "__main__":
33 main()

Callers 1

06.pyFile · 0.70

Calls 2

part1Function · 0.70
part2Function · 0.70

Tested by

no test coverage detected