MCPcopy Create free account
hub / github.com/AxlLind/AdventOfCode / main

Function main

2018/src/19.py:45–49  ·  view source on GitHub ↗
(indata: str)

Source from the content-addressed store, hash-verified

43
44@aoc.main('19')
45def main(indata: str):
46 lines = indata.split('\n')
47 a, b = [int(lines[n].split(' ')[2]) for n in [22,24]]
48 n = 836 + 22 * a + b
49 return f(n), f(n+10550400)
50
51if __name__ == "__main__":
52 main()

Callers 1

19.pyFile · 0.70

Calls 1

fFunction · 0.70

Tested by

no test coverage detected