12 lines
225 B
Markdown
12 lines
225 B
Markdown
# Game of Life
|
|
|
|
Conway's Game of Life implemented efficiently in C++.
|
|
|
|
The input file must contain the number of columns and rows to expect. Live cells are marked as `x`, dead cells are `.`. For example:
|
|
|
|
```
|
|
3,2
|
|
...
|
|
.x.
|
|
```
|