Skip to content

Game of life implementation in java #hexagonal #tdd (but better than previous one : https://github.com/Eulbobo/game_of_life)

Notifications You must be signed in to change notification settings

Eulbobo/game_of_life_2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Game of life

  1. Any live cell with fewer than two live neighbours dies, as if caused by underpopulation.
  2. Any live cell with more than three live neighbours dies, as if by overcrowding.
  3. Any live cell with two or three live neighbours lives on to the next generation.
  4. Any dead cell with exactly three live neighbours becomes a live cell.

About

Game of life implementation in java #hexagonal #tdd (but better than previous one : https://github.com/Eulbobo/game_of_life)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages