You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the compute_neighbours() function, I think you meant to do N = [[0,]*(shape[1]) for i in range(shape[0])]
instead of N = [[0,]*(shape[0]) for i in range(shape[1])]
The text was updated successfully, but these errors were encountered:
In the
compute_neighbours()
function, I think you meant to doN = [[0,]*(shape[1]) for i in range(shape[0])]
instead of
N = [[0,]*(shape[0]) for i in range(shape[1])]
The text was updated successfully, but these errors were encountered: