Skip to content

Commit 26c3ffb

Browse files
committed
fix(ai): maze description fix
1 parent eb9c908 commit 26c3ffb

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

  • courses/artificialintelligence/assignments/life

courses/artificialintelligence/assignments/life/README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Game of Life
22

3-
You are are applying for a internship position at Valvule Corp and they want to test your abilities to manage states. You were tasked to code the Conway's Game of Life.
3+
You are applying for an internship position at Valvule Corp, and they want to test your abilities to manage states. You were tasked to code the Conway's Game of Life.
44

55
The game consists in a C x L matrix of cells (Columns and Lines), where each cell can be either alive or dead. The game is played in turns, where each turn the state of the cells are updated according to the following rules:
66

@@ -39,3 +39,9 @@ The output should be the state of the cells after T turns, in the same format as
3939
.###.
4040
.....
4141
```
42+
43+
## References
44+
45+
- [Animated Example](https://playgameoflife.com/)
46+
- [Conway's Game of Life Wiki](https://conwaylife.com/wiki/Conway%27s_Game_of_Life)
47+
- [Wikipedia](https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life)

0 commit comments

Comments
 (0)