6 lines
160 B
Python
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}")
|