From 26c3ffb36abb2382b815ff2d0804978c5f053e22 Mon Sep 17 00:00:00 2001 From: Alexandre Tolstenko Date: Mon, 11 Sep 2023 10:34:08 -0400 Subject: [PATCH] fix(ai): maze description fix --- courses/artificialintelligence/assignments/life/README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/courses/artificialintelligence/assignments/life/README.md b/courses/artificialintelligence/assignments/life/README.md index 8ab5554e..2ee87f6a 100644 --- a/courses/artificialintelligence/assignments/life/README.md +++ b/courses/artificialintelligence/assignments/life/README.md @@ -1,6 +1,6 @@ # Game of Life -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. +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. 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: @@ -39,3 +39,9 @@ The output should be the state of the cells after T turns, in the same format as .###. ..... ``` + +## References + +- [Animated Example](https://playgameoflife.com/) +- [Conway's Game of Life Wiki](https://conwaylife.com/wiki/Conway%27s_Game_of_Life) +- [Wikipedia](https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life) \ No newline at end of file