Стела обнови решението на 27.03.2012 16:24 (преди почти 13 години)
+import os
+import time
+from itertools import product as pro
+from random import Random
+
+BOARD_SIZE = 48
+
+def print_board(board, wait=False, sleep=False):
+ os.system(['clear', 'cls'][os.name == 'nt'])
+ print('=' * (BOARD_SIZE + 2), end = '|\n')
+ for row in board:
+ print(*['X' if x else ' ' for x in row], end = ' |\n', sep = '')
+ print([[x & 1 for x in row] for row in board])
+ input("Press enter to continue.")
+
+def create_board(fill_rate=0.3):
+ rand = Random()
+ return [[int(x and x != BOARD_SIZE + 1 and y and y != BOARD_SIZE + 1
+ and rand.normalvariate(0.5, 0.2) < fill_rate)
+ for x in range(0, BOARD_SIZE + 2)]
+ for y in range(0, BOARD_SIZE + 2)]
+
+def step_board(board):
+ """
+ This is my function for next iteration of the board. Don't hate me for the
+ list comprehension in the end of the method.
+
+ """
+ neighbours = [[0 for _ in range(50)] for __ in range(50)]
+ for row, col in pro(range(1, 49), range(1, 49)):
+ if board[row][col]:
+ for line, post in pro([row - 1, row, row + 1],
+ [col - 1, col, col + 1]):
+ neighbours[line][post] += 1
+ neighbours[row][col] -= 1
+ board[1:-1] = [[int(not (not col or col == BOARD_SIZE + 1 or
+ neighbours[row][col] > 3 or neighbours[row][col] < 2 or
+ (neighbours[row][col] == 2 and not board[row][col])))
+ for col in range(50)] for row in range(1, 49)]
+
+if __name__ == '__main__':
+ board = create_board()
+ while True:
+ step_board(board)
+ print_board(board)