Skip to content

Conway's game of life implemented using TDD (Node, TypeScript, Jest)

License

Notifications You must be signed in to change notification settings

awuzi/game-of-life-tdd

 
 

Repository files navigation

Rules :

  • Any live cell with fewer than two live neighbours dies, as if by underpopulation.
  • 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 overpopulation.
  • Any dead cell with exactly three live neighbours becomes a live cell, as if by reproduction.

Getting started

  • Fork, then clone the repository
  • Install dependencies
  • Start developing (npm test)

About

Conway's game of life implemented using TDD (Node, TypeScript, Jest)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 98.8%
  • JavaScript 1.2%