aoc2020/aoclib/output.py
2020-12-08 06:24:27 +01:00

6 lines
168 B
Python

def printSolution(day, part, solution, test=False):
if test:
print("(TEST) ", end="")
print("Solution to day %s, part %s: %s" % (day, part, solution))