6 lines
168 B
Python
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))
|