packatino / GameOfLife

A coding kata for practicing Swift with the game of life.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Game of Life

A coding kata for practicing Swift with Conway's Game of Life.

Rules

  • Any live cell with fewer than two live neighbours dies, as if caused by under-population.
  • Any live cell with two or three live neighbours lives on to the next generation.
  • Any live cell with more than three live neighbours dies, as if by over-population.
  • Any dead cell with exactly three live neighbours becomes a live cell, as if by reproduction.

About

A coding kata for practicing Swift with the game of life.

License:MIT License


Languages

Language:Swift 100.0%