From bbaa58db1a1de602ac919264eee3d80592178585 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 10 Dec 2022 12:32:28 +0100 Subject: Better visibility --- 2022/10/solve.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '2022/10/solve.py') diff --git a/2022/10/solve.py b/2022/10/solve.py index 31c933f..e9c7b6b 100644 --- a/2022/10/solve.py +++ b/2022/10/solve.py @@ -20,7 +20,7 @@ def solve(): if cycle - 20 >= 0 and (cycle - 20) % 40 == 0: signal_strength += cycle * x - crt[row][col] = "#" if col in [x-1,x,x+1] else "." + crt[row][col] = "█" if col in [x-1,x,x+1] else " " col += 1 if instr[0] == "noop": -- cgit v1.2.3