From 940094e90c65ac97bf376c51521e687ae23e8568 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustav=20S=C3=B6rn=C3=A4s?= Date: Sat, 12 Dec 2020 07:06:08 +0100 Subject: bit faster day 11 --- 20/py/aoc20.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '20/py/aoc20.py') diff --git a/20/py/aoc20.py b/20/py/aoc20.py index cf36581..c904e21 100644 --- a/20/py/aoc20.py +++ b/20/py/aoc20.py @@ -106,7 +106,7 @@ if __name__ == "__main__": times.append(ans_time-start) avg_time = sum(times) / len(times) tot_time[part] += avg_time - print(f" {avg_time*1000:6.3f} {ans:14}", end="") + print(f" {avg_time*1000:8.3f} {ans:14}", end="") print() if decorate: -- cgit v1.2.1