Update only drop cell

Structure for pile walking to find cells greater than 3 is set

I do not update neighbors cells, then only central value of the pile (where the
sand grain is dropped) is at the right value in the end
This commit is contained in:
Freezed 2020-07-16 11:19:41 +02:00
parent ff479a6fe2
commit eebd2751fe
1 changed files with 11 additions and 1 deletions

View File

@ -35,11 +35,21 @@ def main(pile, n):
[[0, 1, 0, 1, 0], [1, 2, 2, 2, 1], [0, 2, 0, 2, 0], [1, 2, 2, 2, 1], [0, 1, 0, 1, 0]]
"""
center = int((len(pile) - 1) / 2)
size = len(pile)
center = int((size - 1) / 2)
while n != 0:
pile[center][center] += 1
# find cells > 3
for x in range(size):
for y in range(size):
if pile[x][y] > 3:
pile[x][y] -= 4
n -= 1
return pile