From 8e6440d8fd69caedc11192dca02a6ae28f5248cf Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Thu, 2 Dec 2021 10:05:22 +0100 Subject: Improve the makeshift macros --- 2015/18/puzzles.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to '2015/18/puzzles.py') diff --git a/2015/18/puzzles.py b/2015/18/puzzles.py index 5fbe572..4082ab5 100644 --- a/2015/18/puzzles.py +++ b/2015/18/puzzles.py @@ -28,10 +28,9 @@ def simulate(data: list[list[str]]) -> list[list[str]]: cond = lambda x, y: (data[x][y] == "#" and neighbours(data, x, y) in [2, 3]) or ( data[x][y] == "." and neighbours(data, x, y) == 3 ) - # END PART 1 - # START PART 2 + # END PART 1 START PART 2 cond = lambda x, y: ( - ((i, j) in [(0, 0), (0, 99), (99, 0), (99, 99)]) + ((x, y) in [(0, 0), (0, 99), (99, 0), (99, 99)]) or (data[x][y] == "#" and neighbours(data, x, y) in [2, 3]) or (data[x][y] == "." and neighbours(data, x, y) == 3) ) -- cgit v1.2.3