diff options
author | Marvin Borner | 2022-12-10 12:32:28 +0100 |
---|---|---|
committer | Marvin Borner | 2022-12-10 12:32:28 +0100 |
commit | bbaa58db1a1de602ac919264eee3d80592178585 (patch) | |
tree | e74b8d8704a7c061d8c7ceddc468a4cbba91534f /2022/10/solve.py | |
parent | 5179b273acc3c76b1aa56cbece86837b6d3d3427 (diff) |
Better visibility
Diffstat (limited to '2022/10/solve.py')
-rw-r--r-- | 2022/10/solve.py | 2 |
1 files changed, 1 insertions, 1 deletions
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": |