aoc2020/aoclib/output.py
2020-12-01 11:27:01 +01:00

6 lines
160 B
Python

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