aoc2020/aoclib/output.py
Stefan Harmuth aa07b45ba7 day 8
2020-12-08 06:23:43 +01:00

6 lines
169 B
Python

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