{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# John Conway's Game of Life\n",
"\n",
"The cellular automata game *Life*, invented by the mathematician [John Conway](https://en.wikipedia.org/wiki/John_Horton_Conway), makes a fun programming exercise. Let's review the [rules](http://en.wikipedia.org/wiki/Conway%27s_Game_of_Life):\n",
"\n",
"The *world* of the Game of Life is an infinite two-dimensional orthogonal grid of *cells*, each of which is in one of two possible states, *live* or *empty*. Each cell has eight *neighbors*, the cells that are horizontally, vertically, or diagonally adjacent. At each step in time, the following rules are applied to create the next *generation*:\n",
"\n",
"+ Any live cell with two or three live neighbors lives on to the next generation.\n",
"+ Any empty cell with exactly three live neighbors becomes a live cell in the next generation.\n",
"+ All other cells are empty in the next generation.\n",
"\n",
"For example, in the diagram below, \"`@`\" cells are live. In the transition from Generation 0 to 1, the cell marked \"`,`\" becomes empty (dies off) because it has zero live neighbors. In the next transition, a fourth `@` becomes live, because it has 3 live neighbors. All other cells stay the same. \n",
"\n",
" . . . . . . . . . . . . . . .\n",
" . . . @ . . . . , . . . . . .\n",
" . @ . . . . @ . . . . @ @ . .\n",
" . @ @ . . . @ @ . . . @ @ . .\n",
" . . . . . . . . . . . . . . .\n",
" Gen 0 Gen 1 Gen 2\n",
" \n",
"\n",
"\n",
"The world continues to evolve by these rules for as long as you care to observe. \n",
"\n",
"# Developing a Life Program\n",
"\n",
"\n",
"To create a program to play Life, start with the vocabulary of concepts:\n",
"\n",
"+ **World**\n",
"+ **Cell**\n",
"+ **Live/Empty**\n",
"+ **Neighbors**\n",
"+ **Next Generation**\n",
"+ **Display**\n",
"+ **Live Neighbor Counts**\n",
"\n",
"and consider how to implement them:\n",
"\n",
"+ **World**: The state of the world must represent which cells are empty and which are live. The tricky part is that the number of cells is infinite, and we can't store an infinite array in a finite computer. I can think of three ways to deal with this problem:\n",
" 1. **Change the rules**; make the world finite instead of infinite. (Cells at the edge of the world have fewer neighbors, or perhaps they wrap around to the other side of the world.)\n",
" 2. Use a **finite rectangular window** that covers all the live cells in the infinite grid. As the world\n",
" evolves, this window may have to grow or shift.\n",
"
Example: `world = [[0, 0, 0, 0, 0], [0, 0, 0, 1, 0], [0, 1, 0, 0, 0], [0, 1, 1, 0, 0], [0, 0, 0, 0, 0]]` \n",
"\n",
" 3. Represent a world as a **set of live cells.** This set will grow and shrink in size from one generation to the next, but we don't have to worry about overflowing the edges of an array.\n",
"
Example: `world = {(3, 1), (1, 2), (1, 3), (2, 3)}` \n",
"
I will go with this choice.\n",
"\n",
"\n",
"+ **Cell**: Each cell will be represented as an (x, y) pair of integer coordinates.
Example: `cell = (1, 2)`.\n",
"+ **Live/Empty**: \n",
"A cell is live if it is a member of the set of live cells. \n",
"
Example: \"`cell in world`\" is True, given the definition of `cell` and `world` above, so `cell` is live.\n",
"+ **Neighbors**: The cell `(x, y)` has eight neighbors, formed by adding or subtracting 1 from `x` or `y` or both. We can define\n",
"a function `neighbors(cell)` to return this set.\n",
"
Example: `neighbors((8, 8)) == [(7, 7), (8, 7), (9, 7), (7, 8), (9, 8), (7, 9), (8, 9), (9, 9)]`\n",
"\n",
"+ **Display**: We will need some way to display the state of the world. Let's defer that for now.\n",
"\n",
"+ **Next Generation**: We can define a function, `next_generation(world)`, that takes a world as input and returns\n",
"a new world with the new set of live cells according to the rules.\n",
"Example: `next_generation({(3, 1), (1, 2), (1, 3), (2, 3)}) == {(1, 2), (1, 3), (2, 3)}`\n",
"\n",
"+ **Live Neighbor Counts**: I need to know how many live neighbors each cell has. A good way to represent this is a dict of `{(x, y): count}`. But which cells need to be the keys of this dict? We can start with the live cells, and also add any cells neighboring the live cells. An easy way to generate this dict is to create a `Counter` and pass it every neighbor of every live cell. This may feel like we're doing the counting \"backwards.\" Instead of asking \"for each cell, how many live neighbors does it have?\" we are saying \"for each live cell, increment the count of each of its neighbors.\" The two amount to the same thing because *neighbor* is symmetric—if P is a neighbor of Q, then Q is a neighbor of P. Below we see the neighbor counts for each of the three generations; in each generation the top diagram gives the neighbor counts for the empty cells, and the bottom diagram gives the counts for the live cells. This is just to make the diagram easier to read; in the code these are combined into one `Counter`. Here are the counts:\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n",
" . . 1 1 1 . . . . . . . . . .\n",
" 1 1 2 @ 1 1 1 1 , . 1 2 2 1 .\n",
" 2 @ 4 2 1 2 @ 3 1 . 2 @ @ 2 .\n",
" 2 @ @ 1 . 2 @ @ 1 . 2 @ @ 2 .\n",
" 1 2 2 1 . 1 2 2 1 . 1 2 2 1 .\n",
" Gen 0 Gen 1 Gen 2\n",
" . . . . . . . . . . . . . . .\n",
" . . . 0 . . . . , . . . . . .\n",
" . 2 . . . . 2 . . . . 3 3 . .\n",
" . 2 2 . . . 2 2 . . . 3 3 . .\n",
" . . . . . . . . . . . . . . .\n",
" \n",
"\n",
"Here is the implementation. Note that in `next_generation` the `neighbor_counts` is used two ways so I decided to use two different names for clarity: `possible_cells` is used to iterate over all cells that might be live, and `counts` is used to check if a cell has the right number of neighbors."
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"from collections import Counter\n",
"\n",
"def next_generation(world):\n",
" \"The set of live cells in the next generation.\"\n",
" possible_cells = counts = neighbor_counts(world)\n",
" return {cell for cell in possible_cells\n",
" if (counts[cell] == 3) \n",
" or (counts[cell] == 2 and cell in world)}\n",
"\n",
"def neighbor_counts(world):\n",
" \"A {cell: int} counter of the number of live neighbors for each cell that has neighbors.\"\n",
" return Counter(nb for cell in world \n",
" for nb in neighbors(cell))\n",
"\n",
"def neighbors(cell):\n",
" \"All 8 adjacent neighbors of cell.\"\n",
" (x, y) = cell\n",
" return [(x-1, y-1), (x, y-1), (x+1, y-1), \n",
" (x-1, y), (x+1, y), \n",
" (x-1, y+1), (x, y+1), (x+1, y+1)]"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"We can see how this works:"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"{(1, 2), (1, 3), (2, 3)}"
]
},
"execution_count": 2,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"world = {(3, 1), (1, 2), (1, 3), (2, 3)}\n",
"next_generation(world)"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"{(1, 2), (1, 3), (2, 2), (2, 3)}"
]
},
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"next_generation(next_generation(world))"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"[(1, 3), (2, 3), (3, 3), (1, 4), (3, 4), (1, 5), (2, 5), (3, 5)]"
]
},
"execution_count": 4,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"neighbors((2, 4))"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"Counter({(0, 1): 1,\n",
" (0, 2): 2,\n",
" (0, 3): 2,\n",
" (0, 4): 1,\n",
" (1, 1): 1,\n",
" (1, 2): 2,\n",
" (1, 3): 2,\n",
" (1, 4): 2,\n",
" (2, 0): 1,\n",
" (2, 1): 2,\n",
" (2, 2): 4,\n",
" (2, 3): 2,\n",
" (2, 4): 2,\n",
" (3, 0): 1,\n",
" (3, 2): 2,\n",
" (3, 3): 1,\n",
" (3, 4): 1,\n",
" (4, 0): 1,\n",
" (4, 1): 1,\n",
" (4, 2): 1})"
]
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"neighbor_counts(world)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"`run` is a function to play n generations of Life:"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {},
"outputs": [],
"source": [
"def run(world, n):\n",
" \"Run the world for n generations. No display; just return the nth generation.\"\n",
" for g in range(n):\n",
" world = next_generation(world)\n",
" return world"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"{(1, 2), (1, 3), (2, 2), (2, 3)}"
]
},
"execution_count": 7,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"run(world, 100)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Display\n",
"\n",
"Now let's see how to display worlds. We'll consider a rectangular window on the infinite plane, specified as ranges of `Xs` and `Ys` coordinates. The function `picture` turns a world into a string showing what the world looks like:"
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {},
"outputs": [],
"source": [
"import time\n",
"from IPython.display import clear_output, display_html\n",
"\n",
"LIVE = '@'\n",
"EMPTY = '.'\n",
"PAD = ' '\n",
" \n",
"def picture(world, Xs, Ys):\n",
" \"Return a picture: a grid of characters representing the cells in this window.\"\n",
" def row(y): return PAD.join(LIVE if (x, y) in world else EMPTY for x in Xs)\n",
" return '\\n'.join(row(y) for y in Ys)"
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
". . . . .\n",
". . . @ .\n",
". @ . . .\n",
". @ @ . .\n",
". . . . .\n"
]
}
],
"source": [
"print(picture(world, range(5), range(5)))"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"The function `display_run` runs the world for `n` steps, displaying the picture at each step:"
]
},
{
"cell_type": "code",
"execution_count": 10,
"metadata": {},
"outputs": [],
"source": [
"def display_run(world, n=10, Xs=range(10), Ys=range(10), pause=0.2):\n",
" \"Step and display the world for the given number of generations.\"\n",
" for g in range(n + 1):\n",
" html = ('Generation {}, Population {}\\n{}'\n",
" .format(g, len(world), pre(picture(world, Xs, Ys))))\n",
" clear_output()\n",
" display_html(html, raw=True)\n",
" time.sleep(pause)\n",
" world = next_generation(world)\n",
" \n",
"def pre(text): return '
' + text + ''" ] }, { "cell_type": "code", "execution_count": 11, "metadata": {}, "outputs": [ { "data": { "text/html": [ "Generation 5, Population 4\n", "
. . . . .\n", ". . . . .\n", ". @ @ . .\n", ". @ @ . .\n", ". . . . ." ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "display_run(world, 5, range(5), range(5))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# Interesting Worlds\n", "\n", "Now let's take a look at some initial worlds that *Life* enthusiasts have discovered. It would be tedious to enumerate these with an explicit set of `(x, y)` coordinates, so we will define the function `shape` that takes a picture as input and returns a world; `shape` and `picture` are more-or-less inverses. " ] }, { "cell_type": "code", "execution_count": 12, "metadata": { "collapsed": true }, "outputs": [], "source": [ "def shape(picture, offset=(3, 3)):\n", " \"Convert a graphical picture (e.g. '@ @ .\\n. @ @') into a world (set of cells).\"\n", " cells = {(x, y) \n", " for (y, row) in enumerate(picture.splitlines())\n", " for (x, c) in enumerate(row.replace(PAD, ''))\n", " if c == LIVE}\n", " return move(cells, offset)\n", "\n", "def move(cells, offset):\n", " \"Move/Translate/slide a set of cells by a (dx, dy) displacement/offset.\"\n", " (dx, dy) = offset\n", " return {(x+dx, y+dy) for (x, y) in cells}\n", "\n", "blinker = shape(\"@@@\")\n", "block = shape(\"@@\\n@@\")\n", "beacon = block | move(block, (2, 2))\n", "toad = shape(\".@@@\\n@@@.\")\n", "glider = shape(\".@.\\n..@\\n@@@\")\n", "rpentomino = shape(\".@@\\n@@.\\n.@.\", (36, 20))\n", "line = shape(\".@@@@@@@@.@@@@@...@@@......@@@@@@@.@@@@@\", (10, 10))\n", "growth = shape(\"@@@.@\\n@\\n...@@\\n.@@.@\\n@.@.@\", (10, 10))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Here is how `shape` and `move` work:" ] }, { "cell_type": "code", "execution_count": 13, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{(3, 3), (4, 3), (4, 4), (5, 4)}" ] }, "execution_count": 13, "metadata": {}, "output_type": "execute_result" } ], "source": [ "shape(\"\"\"@ @ .\n", " . @ @\"\"\")" ] }, { "cell_type": "code", "execution_count": 14, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{(3, 3), (3, 4), (4, 3), (4, 4)}" ] }, "execution_count": 14, "metadata": {}, "output_type": "execute_result" } ], "source": [ "block" ] }, { "cell_type": "code", "execution_count": 15, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{(103, 203), (103, 204), (104, 203), (104, 204)}" ] }, "execution_count": 15, "metadata": {}, "output_type": "execute_result" } ], "source": [ "move(block, (100, 200))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Let's run some examples. If you are viewing a static notebook, you will only see the last generation; rerun each cell to see all the generations." ] }, { "cell_type": "code", "execution_count": 16, "metadata": {}, "outputs": [ { "data": { "text/html": [ "Generation 10, Population 3\n", "
. . . . . . . . . .\n", ". . . . . . . . . .\n", ". . . . . . . . . .\n", ". . . @ @ @ . . . .\n", ". . . . . . . . . .\n", ". . . . . . . . . .\n", ". . . . . . . . . .\n", ". . . . . . . . . .\n", ". . . . . . . . . .\n", ". . . . . . . . . ." ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "display_run(blinker)" ] }, { "cell_type": "code", "execution_count": 17, "metadata": {}, "outputs": [ { "data": { "text/html": [ "Generation 10, Population 8\n", "
. . . . . . . . . .\n", ". . . . . . . . . .\n", ". . . . . . . . . .\n", ". . . @ @ . . . . .\n", ". . . @ @ . . . . .\n", ". . . . . @ @ . . .\n", ". . . . . @ @ . . .\n", ". . . . . . . . . .\n", ". . . . . . . . . .\n", ". . . . . . . . . ." ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "display_run(beacon)" ] }, { "cell_type": "code", "execution_count": 18, "metadata": {}, "outputs": [ { "data": { "text/html": [ "Generation 10, Population 6\n", "
. . . . . . . . . .\n", ". . . . . . . . . .\n", ". . . . . . . . . .\n", ". . . . @ @ @ . . .\n", ". . . @ @ @ . . . .\n", ". . . . . . . . . .\n", ". . . . . . . . . .\n", ". . . . . . . . . .\n", ". . . . . . . . . .\n", ". . . . . . . . . ." ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "display_run(toad)" ] }, { "cell_type": "code", "execution_count": 19, "metadata": {}, "outputs": [ { "data": { "text/html": [ "Generation 15, Population 5\n", "
. . . . . . . . . .\n", ". . . . . . . . . .\n", ". . . . . . . . . .\n", ". . . . . . . . . .\n", ". . . . . . . . . .\n", ". . . . . . . . . .\n", ". . . . . . . . . .\n", ". . . . . . . @ . .\n", ". . . . . . . . @ @\n", ". . . . . . . @ @ ." ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "display_run(glider, 15)" ] }, { "cell_type": "code", "execution_count": 20, "metadata": {}, "outputs": [ { "data": { "text/html": [ "Generation 130, Population 178\n", "
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . @ . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . @ @ . . . . . . . . . . . . . @\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . @ . @ . . . . . . . . . . . . . @\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . @\n", ". . . . . . . . . . . @ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . @ @ @ @ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . @ @\n", ". . . . . @ . @ @ @ @ . @ @ . . . . . . . . . . . . . . . . . . . . . . @ @ . . . . . . . @ . @\n", ". . . @ @ . . @ @ . . @ @ @ . . . . . . . . . . . . . . . . . . . . . . @ @ . . . . . . . @ . @\n", ". . . . . @ @ @ . . . @ @ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . @ .\n", ". . . . . . . . . . . @ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . @ . @ . . . . . . . . . . . . . . . . . . . . . . @ @ . . . . . . . . . . . . .\n", ". . . . . . . . @ @ . . . . . . . . . . . . . . . . . @ . @ . . . @ @ . . . . . . . . . . . . .\n", ". . . . @ @ @ . . @ @ . . . . . . . . . . . . . . . . @ . @ . . . . . . . . . . . . . . . . @ @\n", ". . . . @ @ . . . @ @ . . . . . . . . . . . . . . . . @ . . . . . . . . . . . . . . . . . @ @ @\n", ". . . . @ . . . . . . . . . . . . . . . . . . . . . . . @ . . . . . . . . @ . . . . . . . @ . .\n", ". . . . @ @ . @ . . . . . . . . . . . . . . . . . . . . . . . . . . . @ @ . @ . . . . . . . @ .\n", ". . . . . @ @ @ . . . . . . . . . . . . . . . . . . . . . . . . @ . . . . . . @ . . . . . . . .\n", ". . . . @ . . @ . . . . . . . . . . . . . . . . . . . . . . . @ . . . . . . @ . . . @ @ . . . .\n", ". . . . . @ . . . . . . . . . . . . . . . . . . . . . . . . @ . . . . . @ @ . . . @ . . @ . . .\n", "@ @ . @ @ @ . . . . . . . . . . . . . . . . . . . . . . . . @ . . @ . . . . . . . @ . . @ . . .\n", ". . @ @ . . . . . . . . . . . . . . . . . . . . . . . . . . @ @ . @ @ @ . . . . . . @ @ . . . .\n", ". . . @ @ . . . . . . . . . . . . . . . . . . . . . . . . . . . @ . . . @ . . . . . . . . . . .\n", "@ @ . @ @ . . . . . . . . . . @ @ . . . . . . . . . . . . . . . @ . . . . . . . . . . . . . . .\n", "@ . . @ . . . . . . . . . . . @ @ . . . . . . . . . . . . . . . . . . @ . . . . . . . . . . . .\n", "@ @ @ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . @ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . @ @ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . @ . @ . @ @ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . @ . @ . @ @ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . @ . @ @ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . @ . @ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ." ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "display_run(rpentomino, 130, range(48), range(40))" ] }, { "cell_type": "code", "execution_count": 21, "metadata": {}, "outputs": [ { "data": { "text/html": [ "Generation 160, Population 111\n", "
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . @ . . . . @\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . @ . . . @ . @ . . @ .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . @ @ . @ . . @ . @ @ . @ .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . @ @ . @ @ . . @ @ . . . @\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . @ . . . @ . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . @ @ @ @ . @ @ @ @ @ . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . @ @ @ . . . @ . . . @ @ . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . @ @ . . @ . @ . @ . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . @ . . . . . @ . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . @ @ . @ @ . . @ . . . . . . . @\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . @ @ . . . . @ . . . . . . @ @ .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . @ . . @ . . . . . . . . @ @ .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . @ @ @ . . . . . . . . @ @ .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . @ . . . . . . . . . . . @\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . @ @ . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . @ @ . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . @ @ @ . . . . . @ @ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . @ . . @ . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . @ @ . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . @ @ . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . @ @ . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ." ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "zoo = (move(blinker, (5, 25)) | move(glider, (8, 13)) | move(blinker, (20, 25)) |\n", " move(beacon, (24, 25)) | move(toad, (30, 25)) | move(block, (13, 25)) | move(block, (17, 33)))\n", "\n", "display_run(zoo, 160, range(48), range(40))" ] }, { "cell_type": "code", "execution_count": 22, "metadata": {}, "outputs": [ { "data": { "text/html": [ "Generation 100, Population 72\n", "
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . @ . . . @ @ . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . @ . @ . . @ . @ . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . @ . . . @ . . @ . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . @ @ . . . . @ . @ . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . @ @ @ @ . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . @ @ @ . @ @ . @ @ . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . @ @ . . . @ . @ @ @ . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . @ @ @ . . . . . @ . . @ . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . @ @ @ @ @ . @ @ @ @ @ @ @ . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . @ @ @ . @ @ @ @ @ @ @ @ . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . @ @ . @ @ @ @ @ . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\n", ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ." ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "display_run(growth, 100, range(40), range(40))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# Outside of IPython\n", "\n", "If you want to run this code in your terminal, outside of an Ipython/Jupyter notebook, you can remove the line:\n", "\n", " from IPython.display import clear_output, display_html\n", " \n", "and add these lines:\n", "\n", " def clear_output(): print(\"\\033[;H\\033[2J\") # ANSI terminal home and clear\n", " \n", " def display_html(text, raw=False): print(text)\n", " \n", " def pre(text): return text\n", " \n", "# Coding Kata\n", "\n", "I once attended a [code kata](https://en.wikipedia.org/wiki/Kata_(programming%29) in which one of the exercises was to write the Game of Life without using any conditional (e.g. `if`) statements. I did it by using roughly the program shown here, but changing the lone `if` to a `filter` in `next_generation`:" ] }, { "cell_type": "code", "execution_count": 23, "metadata": {}, "outputs": [], "source": [ "def next_generation(world):\n", " \"The set of live cells in the next generation.\"\n", " possible_cells = counts = neighbor_counts(world)\n", " def good(cell): return counts[cell] == 3 or (counts[cell] == 2 and cell in world)\n", " return set(filter(good, possible_cells))" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.5.3" } }, "nbformat": 4, "nbformat_minor": 1 }