Sample CLI
gway conway is-board-full
Full Code
def is_board_full(board):
return all(cell == 1 for row in board for cell in row)
conway.is_board_full
gway conway is-board-full
def is_board_full(board):
return all(cell == 1 for row in board for cell in row)