curriculum
stringclasses
9 values
text
stringlengths
279
919
StepOneSizeSmallMedium
# Conway's Game of Life Perform 1 step. ## Input ``` ********* *.*.***** **.*****. ********. *.*****.* ********* *****.*** .*******. ``` ## Output without wrap ``` *.*.....* ......... ......... ........* ........* ......... ......... *.......* ``` This output is different than the input. ## Output with wrap ``` ......... ......... ......... ......... ......... ......... ......... ......... ``` All cells are empty. This output is different than the input. ## Status The outputs are different.
StepOneSizeSmallMediumBig
# Conway's Game of Life Perform 1 step. ## Input ``` ..*...* ..**... .*..... ..*..*. *...... .*..... ***...* .*.*... ....... ``` ## Output without wrap ``` ..**... .***... .*.*... .*..... .*..... ..*.... *...... **..... ....... ``` This output is different than the input. ## Output with wrap ``` ..**... .***... .*.*... .*..... .*..... ..*...* ....... .*..... ..*.... ``` This output is different than the input. ## Status The outputs are different.
StepOneTwoSizeSmallMediumBig
# Conway's Game of Life Perform 2 steps. ## Input ``` ...***..... ......*.... .****..**.* *......*.*. ........... ``` ## Output without wrap ``` .....**.... ..***...... .*.*.....*. .*.*..**.*. ..*........ ``` This output is different than the input. ## Output with wrap ``` ....***.... *****....** ...*....... ....*.**... ***.**....* ``` This output is different than the input. ## Status The outputs are different.
StepOneTwoSizeSmallMediumBig
# Conway's Game of Life Perform 1 step. ## Input ``` .... .... *... ...* ...* .... ``` ## Output without wrap ``` .... .... .... .... .... .... ``` All cells are empty. This output is different than the input. ## Output with wrap ``` .... .... .... *..* .... .... ``` This output is different than the input. ## Status The outputs are different.
StepTwoSizeSmall
# Conway's Game of Life Perform 2 steps. ## Input ``` ***... **.... *..... .*.... *..... .*.... ``` ## Output without wrap ``` .*.... ...... *..... ...... **.... ...... ``` This output is different than the input. ## Output with wrap ``` .***.. .*.... *....* .....* *.*... ..*... ``` This output is different than the input. ## Status The outputs are different.
StepOneTwoSizeSmall
# Conway's Game of Life Perform 1 step. ## Input ``` ... ... ... .** **. ``` ## Output without wrap ``` ... ... ... *** *** ``` The columns are identical. This output is different than the input. ## Output with wrap ``` ... ... ... .** **. ``` This output is identical to the input. Still life. ## Status The outputs are different.
StepOneSizeSmallMediumBig
# Conway's Game of Life Perform 1 step. ## Input ``` *....**..... **....*..*.. ..........*. ..***.**.... ...*....***. *.*..*...*** *.....*...** .....**.*.*. *...*...**.* *....***.*.. ..........*. .*......*... .*.....*.... ``` ## Output without wrap ``` **...**..... **...**..... .***.***.... ..***..**.*. .*...****..* .*......*... .*....**.... .....**.*... ....*....... .....***.*.. ......****.. ............ ............ ``` This output is different than the input. ## Output with wrap ``` *....***.... **...**....* .***.***.... ..***..**.*. .*...****... **......*... **....**.... .....**.*... *...*......* *....***.*.. ......****.. ............ **....**.... ``` This output is different than the input. ## Status The outputs are different.
StepOneTwoSizeSmallMedium
# Conway's Game of Life Perform 2 steps. ## Input ``` ......**. ...*..*** ......*.. ......... ``` ## Output without wrap ``` .......*. .....**.. ......... ......... ``` This output is different than the input. ## Output with wrap ``` .....**.* .....**.. .....**.. .....**.. ``` This output is different than the input. ## Status The outputs are different.
StepOneSizeSmall
# Conway's Game of Life Perform 1 step. ## Input ``` *.* *.* ... ``` ## Output without wrap ``` ... ... ... ``` All cells are empty. This output is different than the input. ## Output with wrap ``` *.* *.* ... ``` This output is identical to the input. Still life. ## Status The outputs are different.
StepOneTwoSizeSmallMedium
# Conway's Game of Life Perform 1 step. ## Input ``` ....... ....... ....... .*..... .*..... ``` ## Output without wrap ``` ....... ....... ....... ....... ....... ``` All cells are empty. This output is different than the input. ## Output with wrap ``` ....... ....... ....... ....... ....... ``` All cells are empty. This output is different than the input. ## Status The outputs are identical.
StepTwoSizeSmall
# Conway's Game of Life Perform 2 steps. ## Input ``` .*.... *..... **.... .*.... **.... ``` ## Output without wrap ``` ...... **.... **.... ..*... .*.... ``` This output is different than the input. ## Output with wrap ``` ..*... *..... **.... ..*... *.*... ``` This output is different than the input. ## Status The outputs are different.
StepOneSizeSmallMediumBig
# Conway's Game of Life Perform 1 step. ## Input ``` ***.*..****. *.***..****. *****.***... *****.*.*..* ***..**....* ***.*.*.**** ***.**..**** *..**..**.** ****.**.**.* .***..*.*.*. *...******** .**..******* *******.*.** ``` ## Output without wrap ``` *.*.*..*..*. ..........*. ......*...*. ........*... ......*.*..* ....*.*.*... ......*..... ............ *....**....* ............ *...*....... ............ *..**...*..* ``` This output is different than the input. ## Output with wrap ``` ............ ..........*. ......*...*. ........*... ......*.*... ....*.*.*... ......*..... ............ .....**..... ............ ....*....... ............ ............ ``` This output is different than the input. ## Status The outputs are different.
StepOneSizeSmallMedium
# Conway's Game of Life Perform 1 step. ## Input ``` **. ... ... .*. ``` ## Output without wrap ``` ... ... ... ... ``` All cells are empty. This output is different than the input. ## Output with wrap ``` *** ... ... *** ``` The columns are identical. This output is different than the input. ## Status The outputs are different.
StepOneSizeSmall
# Conway's Game of Life Perform 1 step. ## Input ``` ..... ..... ..... **..* **... ..... ``` ## Output without wrap ``` ..... ..... ..... **... **... ..... ``` This output is different than the input. ## Output with wrap ``` ..... ..... *.... .*..* .*..* ..... ``` This output is different than the input. ## Status The outputs are different.
StepOneSizeSmall
# Conway's Game of Life Perform 1 step. ## Input ``` ... *** ..* *** ... ... ``` ## Output without wrap ``` .*. .** ... .** .*. ... ``` This output is different than the input. ## Output with wrap ``` *** *** ... *** *** ... ``` The columns are identical. This output is different than the input. ## Status The outputs are different.
StepOneSizeSmallMedium
# Conway's Game of Life Perform 1 step. ## Input ``` *......** ..***..** ........* *...****. *...***.* ...*.*... *..**..** ``` ## Output without wrap ``` ...*...** ...*..... ........* ....*...* ...*..... ...*....* ...**.... ``` This output is different than the input. ## Output with wrap ``` .**...*.. ...*..... *........ *...*.... *..*....* ...*..... *..**.**. ``` This output is different than the input. ## Status The outputs are different.
StepTwoSizeSmallMedium
# Conway's Game of Life Perform 2 steps. ## Input ``` ... ... *** ..* .*. *** *** *.. *** ... ``` ## Output without wrap ``` ... .** *.* *.* .*. ... ... .*. **. **. ``` This output is different than the input. ## Output with wrap ``` ... ... ... *** ... ... ... *** ... ... ``` The columns are identical. This output is different than the input. ## Status The outputs are different.
StepOneTwoSizeSmallMediumBig
# Conway's Game of Life Perform 2 steps. ## Input ``` .*.**..**.* .***.****** *.***..**** ..******.** .**.******* ****.*.**** *.*****.**. ``` ## Output without wrap ``` ....**..... .....*..... ........... ........... ........... **......... ........... ``` This output is different than the input. ## Output with wrap ``` ........... ........... ........... ........... ........... ........... ........... ``` All cells are empty. This output is different than the input. ## Status The outputs are different.
StepOneSizeSmallMedium
# Conway's Game of Life Perform 1 step. ## Input ``` ... *** *** *** *** ... ... *.. ``` ## Output without wrap ``` .*. *.* ... ... *.* .*. ... ... ``` This output is different than the input. ## Output with wrap ``` ... ... ... ... ... *** ... ... ``` The columns are identical. This output is different than the input. ## Status The outputs are different.
StepOneTwoSizeSmallMedium
# Conway's Game of Life Perform 1 step. ## Input ``` ..*.*.*. ..***.*. .*....*. .***..*. ``` ## Output without wrap ``` ..*.*... .**.*.** .*..*.** .**..... ``` This output is different than the input. ## Output with wrap ``` ....*.** .**.*.** .*..*.** .*.*..** ``` This output is different than the input. ## Status The outputs are different.
StepOneTwoSizeSmallMediumBig
# Conway's Game of Life Perform 1 step. ## Input ``` **...*.... **..*..*** ....*..**. **..*....* **...**... ``` ## Output without wrap ``` **......*. **..****.* ...***.*.. **..*.***. **...*.... ``` This output is different than the input. ## Output with wrap ``` ..*.**.**. .*..****.. ...***.*.. .*..*.**** ..*.***... ``` This output is different than the input. ## Status The outputs are different.
StepOneSizeSmall
# Conway's Game of Life Perform 1 step. ## Input ``` **** *.*. **** .... *..* ..*. ``` ## Output without wrap ``` *.** .... *.** *..* .... .... ``` This output is different than the input. ## Output with wrap ``` *... .... *.*. .... ...* .... ``` This output is different than the input. ## Status The outputs are different.
StepOneSizeSmallMediumBig
# Conway's Game of Life Perform 1 step. ## Input ``` ... ... ..* ... ... ... *** ... ... ... *** *** ... ``` ## Output without wrap ``` ... ... ... ... ... .*. .*. .*. ... .*. *.* *.* .*. ``` This output is different than the input. ## Output with wrap ``` ... ... ... ... ... *** *** *** ... *** ... ... *** ``` The columns are identical. This output is different than the input. ## Status The outputs are different.
StepOneTwoSizeSmallMedium
# Conway's Game of Life Perform 2 steps. ## Input ``` **.*.**** ********* ********* *******.. .******.* ********* *.***.**. *.******* ``` ## Output without wrap ``` ......... ......... ......... .......** .......** ......... .*....... ......... ``` This output is different than the input. ## Output with wrap ``` ......... ......... ......... ......... ......... ......... ......... ......... ``` All cells are empty. This output is different than the input. ## Status The outputs are different.
StepTwoSizeSmall
# Conway's Game of Life Perform 2 steps. ## Input ``` ...... *..**. *....* .****. ..*... ``` ## Output without wrap ``` ...... ...... .**..* *..**. .*.... ``` This output is different than the input. ## Output with wrap ``` .***.. .....* ..*... ...*** .....* ``` This output is different than the input. ## Status The outputs are different.
StepTwoSizeSmallMedium
# Conway's Game of Life Perform 2 steps. ## Input ``` .*.**.*.. .*.**.*.. .*.**.*.. ``` The rows are identical. ## Output without wrap ``` ......... ..*..*... ......... ``` This output is different than the input. ## Output with wrap ``` ..*..*... ..*..*... ..*..*... ``` The rows are identical. This output is different than the input. ## Status The outputs are different.
StepTwoSizeSmallMediumBig
# Conway's Game of Life Perform 2 steps. ## Input ``` .*.* ..*. *.** *.*. ...* .... ``` ## Output without wrap ``` .... ..** ..** ..** .... .... ``` This output is different than the input. ## Output with wrap ``` .*.* .*.* .... *.*. *.*. .**. ``` This output is different than the input. ## Status The outputs are different.
StepTwoSizeSmallMediumBig
# Conway's Game of Life Perform 2 steps. ## Input ``` .... .... .... .... **.. ..** .... ...* ..** **** .... .... ``` ## Output without wrap ``` .... .... .... .... .**. .... .... ..** ...* .*.. .**. .... ``` This output is different than the input. ## Output with wrap ``` .... .... .... **** .... .... .... ..** **** .... ..** **** ``` This output is different than the input. ## Status The outputs are different.
StepOneTwoSizeSmallMediumBig
# Conway's Game of Life Perform 1 step. ## Input ``` *.*.**..*.* .*****..*.* .*.*.*..*.* **....*.*** *.*.**..*.* .*.**....** *.*.*****.. *.***..*... ***.*.**.** ..*.*...*.* ..*...**.** ****..*.**. **..*.*..** *.***.****. ``` ## Output without wrap ``` ..*..*..... *.....***.* ...*.**.*.* *..*..*.*.* *.*.**.**.. *.........* *.....****. *........*. *...*.**.** ..*........ .....**...* *..*..*.... ....*.*...* *.***.***** ``` This output is different than the input. ## Output with wrap ``` ........... ......***.* ...*.**.*.. ...*..*.*.. ..*.**.**.. ........... *.....****. .........*. ....*.**.*. ..*........ .....**.... ...*..*.... ....*.*.... ..*...*.... ``` This output is different than the input. ## Status The outputs are different.
StepOneSizeSmallMedium
# Conway's Game of Life Perform 1 step. ## Input ``` *..... ...... ...... ..*... ...... ...... ...... **.... *.*... ``` ## Output without wrap ``` ...... ...... ...... ...... ...... ...... ...... **.... *..... ``` This output is different than the input. ## Output with wrap ``` .*.... ...... ...... ...... ...... ...... ...... **.... *....* ``` This output is different than the input. ## Status The outputs are different.
StepTwoSizeSmallMedium
# Conway's Game of Life Perform 2 steps. ## Input ``` ..*.*.. ...*... .....** ...***. ....*** ....*.. ....... ``` ## Output without wrap ``` ...*... ..**.** ..**.** ....*** ....... ....... ....... ``` This output is different than the input. ## Output with wrap ``` ..**... ..**.** ..**.** ....*** ....... ....... ...**.. ``` This output is different than the input. ## Status The outputs are different.
StepTwoSizeSmallMediumBig
# Conway's Game of Life Perform 2 steps. ## Input ``` .***..**.**. .*.........* .*.**.****** ***.***..**. .*..*.**..*. **........** .*...******. ``` ## Output without wrap ``` ***......... **..****..** **.**.**.... ........*... *.**........ *.**.*...*.* *.*....***** ``` This output is different than the input. ## Output with wrap ``` .....**..... ..**...*.... ...**.**.... ........*... ..**........ ..*****..... ***......... ``` This output is different than the input. ## Status The outputs are different.
StepOneSizeSmallMediumBig
# Conway's Game of Life Perform 1 step. ## Input ``` **.*.****.**.. ******.*.*.*.. .*.**...***.** *...********.. ******.******. **.****.....** ``` ## Output without wrap ``` *..*.*.*****.. .............. ............*. *............* .............* *.....*****.** ``` This output is different than the input. ## Output with wrap ``` ........****.. .............. ............** .............. .............. .............. ``` This output is different than the input. ## Status The outputs are different.
StepOneTwoSizeSmall
# Conway's Game of Life Perform 1 step. ## Input ``` *..* *..* *..* .**. **.* **.* ``` ## Output without wrap ``` .... **** *..* ...* ...* **.. ``` This output is different than the input. ## Output with wrap ``` .... .**. .... .... .... .... ``` This output is different than the input. ## Status The outputs are different.
StepOneSizeSmall
# Conway's Game of Life Perform 1 step. ## Input ``` ...*. ...** ..*.* ..*** ``` ## Output without wrap ``` ...** ..*.* ..*.. ..*.* ``` This output is different than the input. ## Output with wrap ``` ..... ..*.* *.*.. ..*.* ``` This output is different than the input. ## Status The outputs are different.
StepOneSizeSmallMedium
# Conway's Game of Life Perform 1 step. ## Input ``` ....... ..*.... ..***.. ...*... ...***. ....... ``` ## Output without wrap ``` ....... ..*.... ..*.*.. .....*. ...**.. ....*.. ``` This output is different than the input. ## Output with wrap ``` ....... ..*.... ..*.*.. .....*. ...**.. ....*.. ``` This output is different than the input. ## Status The outputs are identical.
StepOneSizeSmallMediumBig
# Conway's Game of Life Perform 1 step. ## Input ``` ......... ......... ......... ......... ......... ......... ......... ......... ......... ......... .**...... .**...... ......... ``` ## Output without wrap ``` ......... ......... ......... ......... ......... ......... ......... ......... ......... ......... .**...... .**...... ......... ``` This output is identical to the input. Still life. ## Output with wrap ``` ......... ......... ......... ......... ......... ......... ......... ......... ......... ......... .**...... .**...... ......... ``` This output is identical to the input. Still life. ## Status The outputs are identical.
StepTwoSizeSmall
# Conway's Game of Life Perform 2 steps. ## Input ``` *..*.. *....* *.**** ..*... .....* ...*.. ``` ## Output without wrap ``` ...... .**..* .....* .**..* ...... ...... ``` This output is different than the input. ## Output with wrap ``` ...*** *.*... *....* *.*..* .*.... ....*. ``` This output is different than the input. ## Status The outputs are different.
StepOneTwoSizeSmallMedium
# Conway's Game of Life Perform 2 steps. ## Input ``` **.*..**. ****.*... ..****..* *..*.*.** .****..** .****..** ...*.**** .*.****** ******... ``` ## Output without wrap ``` ....***.. **...*.** ....**.** ....**... ......... **....... .**...... ..*...... **....... ``` This output is different than the input. ## Output with wrap ``` ......*.. .....*.*. ....**... ....**... ......... ......... ***...... ......... ......... ``` This output is different than the input. ## Status The outputs are different.
StepTwoSizeSmallMedium
# Conway's Game of Life Perform 2 steps. ## Input ``` *.** .*.* *.*. .**. **.* *.** **.. *.*. ..** **.. ``` ## Output without wrap ``` .*** *..* ..** ..** ..** ..** .*.* *... *... .*** ``` This output is different than the input. ## Output with wrap ``` .... .... .... .... .... .... .... .*.* .*.* .... ``` This output is different than the input. ## Status The outputs are different.
StepTwoSizeSmall
# Conway's Game of Life Perform 2 steps. ## Input ``` ..*.. ...*. **.** *..*. ..*.. ....* ``` ## Output without wrap ``` ..... **.** **... **... ...** ..... ``` This output is different than the input. ## Output with wrap ``` ...*. **.*. ...*. **.*. ..**. ..**. ``` This output is different than the input. ## Status The outputs are different.
StepTwoSizeSmall
# Conway's Game of Life Perform 2 steps. ## Input ``` .*** ...* .... .... .**. ``` ## Output without wrap ``` ..** ..** .... .... .... ``` This output is different than the input. ## Output with wrap ``` .*.. *.** .... *... .*.* ``` This output is different than the input. ## Status The outputs are different.
StepOneSizeSmallMedium
# Conway's Game of Life Perform 1 step. ## Input ``` .***....* ****.**** **...*.*. .**...*** **.*.**.* ..*..**.. *...****. ..*.*..*. ****..**. ...**.**. ``` ## Output without wrap ``` *..**.*.* ...*.*..* ...***... ....*...* *..**...* *.**..... .*..*..*. *.*.*...* .*......* .*.*****. ``` This output is different than the input. ## Output with wrap ``` ......... ...*.*... ...***... ....*.... ...**...* ..**..... .*..*..** *.*.*.... .*....... ....***.. ``` This output is different than the input. ## Status The outputs are different.
StepTwoSizeSmallMediumBig
# Conway's Game of Life Perform 2 steps. ## Input ``` **..*******.** .**......*.**. *.*.......*..* ..**.........* .*...***...*** *....*.*.*.**. ........*.*... .**....**.*... .*....*****..* *....*.**.***. *...**.*****.. ``` ## Output without wrap ``` .*****..**.... ..****.......* ....**.*..**.. .*******.*...* .**.**.*****.* .**.**.*.*.**. .**..***.***.. ..........**.. ...*.*......*. *.*****....*** ....***....... ``` This output is different than the input. ## Output with wrap ``` ..*.***....... .**..**....... .*..**.*..***. *.******.*.... .**.**.*****.. *.*.**.*.*.*.. ..*..***.***.. ..........**** ...*.*......*. ***.........*. .**..*........ ``` This output is different than the input. ## Status The outputs are different.
StepOneSizeSmall
# Conway's Game of Life Perform 1 step. ## Input ``` ..*.. ..*.. *.... ``` ## Output without wrap ``` ..... .*... ..... ``` Only one cell is alive. This output is different than the input. ## Output with wrap ``` .*... .*... .*... ``` The rows are identical. This output is different than the input. ## Status The outputs are different.
StepOneSizeSmall
# Conway's Game of Life Perform 1 step. ## Input ``` ..**.. ..*... ...*.. ``` ## Output without wrap ``` ..**.. ..*... ...... ``` This output is different than the input. ## Output with wrap ``` ..**.. ..*... ...*.. ``` This output is identical to the input. Still life. ## Status The outputs are different.
StepOneSizeSmallMedium
# Conway's Game of Life Perform 1 step. ## Input ``` ..*.*.. ...***. ....... *...... ....... ....... ..**... .*..*.. ....*.. .**.*.. ``` ## Output without wrap ``` ....**. ...***. ....*.. ....... ....... ....... ..**... ..*.*.. .**.**. ...*... ``` This output is different than the input. ## Output with wrap ``` .**.... ...***. ....*.. ....... ....... ....... ..**... ..*.*.. .**.**. .**.**. ``` This output is different than the input. ## Status The outputs are different.
StepOneTwoSizeSmallMedium
# Conway's Game of Life Perform 1 step. ## Input ``` ...* *... ..** *... .*.* ...* ***. **.* ``` ## Output without wrap ``` .... ..** .*.. .*.* ..*. *..* *..* *... ``` This output is different than the input. ## Output with wrap ``` .*** *.*. **.* **.. ..** ...* .... .... ``` This output is different than the input. ## Status The outputs are different.
StepTwoSizeSmallMediumBig
# Conway's Game of Life Perform 2 steps. ## Input ``` **.* ..** ***. ...* *..* ***. **.* *.*. **.* .**. ***. .*.* ``` ## Output without wrap ``` ..*. .... ..*. ***. ..** ..** ..** ..** ..** ..** ***. **.. ``` This output is different than the input. ## Output with wrap ``` .... **.. .... .... .... .... .... .... .... .... .... .... ``` This output is different than the input. ## Status The outputs are different.
StepOneSizeSmallMedium
# Conway's Game of Life Perform 1 step. ## Input ``` ...**** *....*. *...*.. *...*.. *.....* ``` ## Output without wrap ``` ....*** ...*..* **..**. **...*. ....... ``` This output is different than the input. ## Output with wrap ``` ....*.. *..*... **..**. **...*. *..*... ``` This output is different than the input. ## Status The outputs are different.
StepOneSizeSmallMediumBig
# Conway's Game of Life Perform 1 step. ## Input ``` .*..*...*... ..*.......*. ...........* ......*..... ...*****.... .....*..*... ``` ## Output without wrap ``` ............ ............ ............ ....*.**.... ....*..*.... .....*.*.... ``` This output is different than the input. ## Output with wrap ``` .........*.. ............ ............ ....*.**.... ....*..*.... ...*....*... ``` This output is different than the input. ## Status The outputs are different.
StepTwoSizeSmallMedium
# Conway's Game of Life Perform 2 steps. ## Input ``` .**.*.*** ....*..*. *****...* *..*.**.* *...**.*. **.*.*.** *.*.*.*.. ``` ## Output without wrap ``` ....****. *.***...* *.....*.. *..*..... *.**....* *....*.** ..*.***** ``` This output is different than the input. ## Output with wrap ``` **..*..*. ......*.. ......**. .*.*..... ..**..... ..*.*.... *...**.** ``` This output is different than the input. ## Status The outputs are different.
StepOneTwoSizeSmall
# Conway's Game of Life Perform 1 step. ## Input ``` *....* *....* .*..*. .*..*. ``` ## Output without wrap ``` ...... **..** **..** ...... ``` This output is different than the input. ## Output with wrap ``` .*..*. .*..*. .*..*. .*..*. ``` The rows are identical. This output is different than the input. ## Status The outputs are different.
StepTwoSizeSmall
# Conway's Game of Life Perform 2 steps. ## Input ``` *.*. *... .... .... *.*. ``` ## Output without wrap ``` .... .... .... .... .... ``` All cells are empty. This output is different than the input. ## Output with wrap ``` *... *... .... .... .... ``` This output is different than the input. ## Status The outputs are different.
StepOneSizeSmallMediumBig
# Conway's Game of Life Perform 1 step. ## Input ``` .... ..*. ..** .... ``` ## Output without wrap ``` .... ..** ..** .... ``` This output is different than the input. ## Output with wrap ``` .... ..** ..** .... ``` This output is different than the input. ## Status The outputs are identical.
StepOneSizeSmallMedium
# Conway's Game of Life Perform 1 step. ## Input ``` ..*.*... .****... ..**.... .**..... ......** *...*... *..*.... *.*..*.. ``` ## Output without wrap ``` .**.*... .*..*... ....*... .***.... .*...... ........ *..**... .*...... ``` This output is different than the input. ## Output with wrap ``` ....**.. .*..*... ....*... .***.... **.....* *....... *..**..* ..*.*... ``` This output is different than the input. ## Status The outputs are different.
StepTwoSizeSmall
# Conway's Game of Life Perform 2 steps. ## Input ``` .** .** *.* **. .** ``` ## Output without wrap ``` .*. *.* *.. *.* **. ``` This output is different than the input. ## Output with wrap ``` ... ... ... ... ... ``` All cells are empty. This output is different than the input. ## Status The outputs are different.
StepTwoSizeSmall
# Conway's Game of Life Perform 2 steps. ## Input ``` **..** ****** *.*..* *.**.* .**..* ``` ## Output without wrap ``` ...... ...... ....*. *..*.* .****. ``` This output is different than the input. ## Output with wrap ``` ...... ...... ...... ...... ...... ``` All cells are empty. This output is different than the input. ## Status The outputs are different.
StepTwoSizeSmallMedium
# Conway's Game of Life Perform 2 steps. ## Input ``` ....*.* *.*...* *****.* .**..** .*.*.*. ..*.... *.**..* .***.** *....** ``` ## Output without wrap ``` .....*. .*.**.* .*.*..* ...*..* ...**.* ....... ...***. .***... .*****. ``` This output is different than the input. ## Output with wrap ``` .*..... ...*... ...*... *..*..* .*.**.. ....... *..**.. **.*.** .*.*... ``` This output is different than the input. ## Status The outputs are different.
StepTwoSizeSmallMediumBig
# Conway's Game of Life Perform 2 steps. ## Input ``` *.. ... ... ... *** ``` ## Output without wrap ``` ... ... ... ... ... ``` All cells are empty. This output is different than the input. ## Output with wrap ``` *.. ... *** ... ... ``` This output is different than the input. ## Status The outputs are different.
StepOneSizeSmallMediumBig
# Conway's Game of Life Perform 1 step. ## Input ``` .** .** *** *** **. *** *** *** *** *** *** **. ``` ## Output without wrap ``` .** ... ... ... ... ... ... ... ... ... ... *.* ``` This output is different than the input. ## Output with wrap ``` ... ... ... ... ... ... ... ... ... ... ... ... ``` All cells are empty. This output is different than the input. ## Status The outputs are different.
StepOneSizeSmallMedium
# Conway's Game of Life Perform 1 step. ## Input ``` *..**.. .***.** .*....* .**.*** ``` ## Output without wrap ``` .*.***. **.*.** *...... .**..** ``` This output is different than the input. ## Output with wrap ``` ....... .*.*.** ....... .**.*.* ``` This output is different than the input. ## Status The outputs are different.
StepOneSizeSmallMedium
# Conway's Game of Life Perform 1 step. ## Input ``` ......*... .......... .*.....*.. ......**.. ``` ## Output without wrap ``` .......... .......... ......**.. ......**.. ``` This output is different than the input. ## Output with wrap ``` ......**.. .......... ......**.. ......**.. ``` This output is different than the input. ## Status The outputs are different.
StepOneTwoSizeSmall
# Conway's Game of Life Perform 2 steps. ## Input ``` ....** ...... ...*.. ..**** ``` ## Output without wrap ``` ...... ...*.. ..*... ..*.*. ``` This output is different than the input. ## Output with wrap ``` ....** ...**. ..***. ..***. ``` This output is different than the input. ## Status The outputs are different.
StepTwoSizeSmallMedium
# Conway's Game of Life Perform 2 steps. ## Input ``` ...... ..**.. .*.... ...... ...... ...... ``` ## Output without wrap ``` ...... ...... ...... ...... ...... ...... ``` All cells are empty. This output is different than the input. ## Output with wrap ``` ...... ...... ...... ...... ...... ...... ``` All cells are empty. This output is different than the input. ## Status The outputs are identical.
StepOneTwoSizeSmall
# Conway's Game of Life Perform 2 steps. ## Input ``` ...* .... ...* *.*. **.. ..*. ``` ## Output without wrap ``` .... .... .... .... *.*. .*.. ``` This output is different than the input. ## Output with wrap ``` **** .... ...* *.*. .... *.*. ``` This output is different than the input. ## Status The outputs are different.
StepOneSizeSmallMedium
# Conway's Game of Life Perform 1 step. ## Input ``` ...... *..*.. ...**. ***..* ...**. .*..*. ``` ## Output without wrap ``` ...... ...**. *..**. .**..* *..*** ...**. ``` This output is different than the input. ## Output with wrap ``` ...... ...**. ...**. ***..* ...**. ...**. ``` This output is different than the input. ## Status The outputs are different.
StepOneSizeSmall
# Conway's Game of Life Perform 1 step. ## Input ``` ....** .....* ....*. ``` ## Output without wrap ``` ....** .....* ...... ``` This output is different than the input. ## Output with wrap ``` ....** .....* ....*. ``` This output is identical to the input. Still life. ## Status The outputs are different.
StepOneTwoSizeSmallMediumBig
# Conway's Game of Life Perform 1 step. ## Input ``` ...***...*** *.*.*..*.*.. .....***.*.* ..*.....**** *....**...*. *..**..*..*. *....*.*...* ``` ## Output without wrap ``` ...***..***. .......*.*.* .*.*.***...* ........*..* .*.******... **..*..*..** ....*.*..... ``` This output is different than the input. ## Output with wrap ``` .*.*.*...*.. *......*.*.. **.*.***...* *.......*... **.******... **..*..*..*. *....*..**.. ``` This output is different than the input. ## Status The outputs are different.
StepOneSizeSmallMedium
# Conway's Game of Life Perform 1 step. ## Input ``` .*...* *..... .*.... .....* *..... ....** ***.*. ...*.. ...*** ***..* ``` ## Output without wrap ``` ...... **.... ...... ...... ....** *..*** .**.** .*...* .*.*.* .***.* ``` This output is different than the input. ## Output with wrap ``` ..*..* **.... *..... *..... *...*. ...**. ***.*. **.... .*.*.* .***.. ``` This output is different than the input. ## Status The outputs are different.
StepOneTwoSizeSmallMedium
# Conway's Game of Life Perform 1 step. ## Input ``` **...* ...... ...... ...... ...... ``` ## Output without wrap ``` ...... ...... ...... ...... ...... ``` All cells are empty. This output is different than the input. ## Output with wrap ``` *..... *..... ...... ...... *..... ``` This output is different than the input. ## Status The outputs are different.
StepOneTwoSizeSmallMedium
# Conway's Game of Life Perform 2 steps. ## Input ``` .*. .*. ... ... *** ... ... ... ... ... ``` ## Output without wrap ``` ... ... ... ... *** ... ... ... ... ... ``` The columns are identical. This output is different than the input. ## Output with wrap ``` ... ... *** ... ... ... *** ... ... ... ``` The columns are identical. This output is different than the input. ## Status The outputs are different.
StepOneTwoSizeSmallMediumBig
# Conway's Game of Life Perform 1 step. ## Input ``` **.**... *..*.*.. *****... *....**. ....*.** **..**.. .***.*.. ``` ## Output without wrap ``` *****... .....*.. *.**..*. *.*...** **..*..* **...... ****.*.. ``` This output is different than the input. ## Output with wrap ``` *....*.. .....*.* *.**..*. *.*...*. .*..*... **.....* .....*.. ``` This output is different than the input. ## Status The outputs are different.
StepTwoSizeSmallMediumBig
# Conway's Game of Life Perform 2 steps. ## Input ``` .*...***..*.** *......**...** *....*........ *.*.**..****** ..*......*..*. ..*.****.**... ``` ## Output without wrap ``` ......*.*..*.* **..*....**..* **.*.......... ...*....***..* ..*....*.....* ......****.... ``` This output is different than the input. ## Output with wrap ``` .*..****..*... .......****.*. ...*.........* ...*....***.** *....***...... **..*...***.** ``` This output is different than the input. ## Status The outputs are different.
StepTwoSizeSmall
# Conway's Game of Life Perform 2 steps. ## Input ``` ... **. ... ... ... .*. ``` ## Output without wrap ``` ... ... ... ... ... ... ``` All cells are empty. This output is different than the input. ## Output with wrap ``` *** *** ... ... ... *** ``` The columns are identical. This output is different than the input. ## Status The outputs are different.
StepOneTwoSizeSmall
# Conway's Game of Life Perform 1 step. ## Input ``` **.*. .*... *.... ..... ``` ## Output without wrap ``` ***.. .**.. ..... ..... ``` This output is different than the input. ## Output with wrap ``` ***.. .**.* ..... **..* ``` This output is different than the input. ## Status The outputs are different.
StepTwoSizeSmallMediumBig
# Conway's Game of Life Perform 2 steps. ## Input ``` ...* .*.. .... .... ..*. .... ``` ## Output without wrap ``` .... .... .... .... .... .... ``` All cells are empty. This output is different than the input. ## Output with wrap ``` .... .... .... .... .... .... ``` All cells are empty. This output is different than the input. ## Status The outputs are identical.
StepOneTwoSizeSmallMedium
# Conway's Game of Life Perform 2 steps. ## Input ``` .**... ...**. ***..* ...*** ..*... *....* ``` ## Output without wrap ``` ..***. ....*. .**..* ...*.* ...*.* ...... ``` This output is different than the input. ## Output with wrap ``` ...... ...... ***... ...*** ****.. ...... ``` This output is different than the input. ## Status The outputs are different.
StepOneSizeSmallMedium
# Conway's Game of Life Perform 1 step. ## Input ``` ... ... *.* ... ... ... *** *.. ... ... ``` ## Output without wrap ``` ... ... ... ... ... .*. **. *.. ... ... ``` This output is different than the input. ## Output with wrap ``` ... ... ... ... ... *** *** *.. ... ... ``` This output is different than the input. ## Status The outputs are different.
StepTwoSizeSmall
# Conway's Game of Life Perform 2 steps. ## Input ``` .... .... .... *.*. *.*. ``` ## Output without wrap ``` .... .... .... .... .... ``` All cells are empty. This output is different than the input. ## Output with wrap ``` .... .... .... .... .... ``` All cells are empty. This output is different than the input. ## Status The outputs are identical.
StepTwoSizeSmall
# Conway's Game of Life Perform 2 steps. ## Input ``` *.* ... *** *.. ... ... ``` ## Output without wrap ``` ... *.. *.. **. ... ... ``` This output is different than the input. ## Output with wrap ``` ... *** *** *.. ... ... ``` This output is different than the input. ## Status The outputs are different.
StepOneSizeSmallMediumBig
# Conway's Game of Life Perform 1 step. ## Input ``` .......*. *..*..... *.*...... *..**...* .****..*. .....*.*. .......** ..*.*..*. .....*... ``` ## Output without wrap ``` ......... .*....... *.*.*.... *...*.... .**..**** ..***..*. .......** ......*** ......... ``` This output is different than the input. ## Output with wrap ``` ......... .*......* *.*.*.... *...*...* ***..***. ..***..*. .......** ......*** ......*.. ``` This output is different than the input. ## Status The outputs are different.
StepTwoSizeSmallMediumBig
# Conway's Game of Life Perform 2 steps. ## Input ``` .......... .......... .......... **........ **.......* .*.*.....* .......... .......... .......... .......... .......... *......... ``` ## Output without wrap ``` .......... .......... .......... .......... ..*....... .*........ .*........ .......... .......... .......... .......... .......... ``` This output is different than the input. ## Output with wrap ``` .......... .......... .......... *......... .**.....** *......... .......... .......... .......... .......... .......... .......... ``` This output is different than the input. ## Status The outputs are different.
StepOneTwoSizeSmallMediumBig
# Conway's Game of Life Perform 1 step. ## Input ``` ......... ......... ......... ......... ......... ......... ......... ......... ......... ......... ..**..... *.**..... ......... ......... ``` ## Output without wrap ``` ......... ......... ......... ......... ......... ......... ......... ......... ......... ......... .***..... .***..... ......... ......... ``` This output is different than the input. ## Output with wrap ``` ......... ......... ......... ......... ......... ......... ......... ......... ......... ......... .***..... .***..... ......... ......... ``` This output is different than the input. ## Status The outputs are identical.
StepOneTwoSizeSmallMedium
# Conway's Game of Life Perform 1 step. ## Input ``` *..* **.. *... ``` ## Output without wrap ``` **.. **.. **.. ``` The rows are identical. This output is different than the input. ## Output with wrap ``` ...* .*.. .... ``` This output is different than the input. ## Status The outputs are different.
StepTwoSizeSmall
# Conway's Game of Life Perform 2 steps. ## Input ``` *.. *.* *.* *.* ``` ## Output without wrap ``` ... *.. .*. ... ``` This output is different than the input. ## Output with wrap ``` ... ... ... ... ``` All cells are empty. This output is different than the input. ## Status The outputs are different.
StepTwoSizeSmallMedium
# Conway's Game of Life Perform 2 steps. ## Input ``` .****** .****** *..**** ******* ****.** ``` ## Output without wrap ``` ....... **..... ....... ....... ....... ``` This output is different than the input. ## Output with wrap ``` ....... ....... ....... ....... ....... ``` All cells are empty. This output is different than the input. ## Status The outputs are different.
StepOneTwoSizeSmall
# Conway's Game of Life Perform 2 steps. ## Input ``` *..**. ...... ...... ...... ...**. ..**** ``` ## Output without wrap ``` ...... ...... ...... ...... ...... ...... ``` All cells are empty. This output is different than the input. ## Output with wrap ``` ...... ...... ...... ...... ...... .***.. ``` This output is different than the input. ## Status The outputs are different.
StepOneSizeSmallMediumBig
# Conway's Game of Life Perform 1 step. ## Input ``` *....*. ....*.. ....... .....*. ..*.*.. .*...*. .....*. ....... ..***.. *.....* ...*.*. ..**.*. ....... ..**.*. ``` ## Output without wrap ``` ....... ....... ....... ....... ....**. ....**. ....... ...**.. ...*... ..*..*. ..**.** ..**... ....... ....... ``` This output is different than the input. ## Output with wrap ``` ...*.** ....... ....... ....... ....**. ....**. ....... ...**.. ...*... ..*..** ..**.*. ..**... ....... ....*.* ``` This output is different than the input. ## Status The outputs are different.
StepOneTwoSizeSmallMediumBig
# Conway's Game of Life Perform 2 steps. ## Input ``` *..**.** ******** ..****** *.*****. **.**.** .****.** *.****** *.**.**. ****.**. .**...** ....**** **...*.* ``` ## Output without wrap ``` ........ **...... **...... **...... ........ ........ ........ **...... **...... *....... .*.***.. ...***.. ``` This output is different than the input. ## Output with wrap ``` ........ ........ ........ ........ ........ ........ ........ ........ ........ ........ ..**.... ..**.... ``` This output is different than the input. ## Status The outputs are different.
StepOneTwoSizeSmall
# Conway's Game of Life Perform 1 step. ## Input ``` .**.. *...* ..... ..*.. ..... ``` ## Output without wrap ``` .*... .*... ..... ..... ..... ``` This output is different than the input. ## Output with wrap ``` **... **... ..... ..... .**.. ``` This output is different than the input. ## Status The outputs are different.
StepTwoSizeSmall
# Conway's Game of Life Perform 2 steps. ## Input ``` **...* ..**.* ..*.*. ...*.. .*..*. ``` ## Output without wrap ``` .**.*. .....* .*...* ..*.*. ...*.. ``` This output is different than the input. ## Output with wrap ``` .*...* **...* .*...* ...... .*...* ``` This output is different than the input. ## Status The outputs are different.
StepTwoSizeSmallMediumBig
# Conway's Game of Life Perform 2 steps. ## Input ``` ***. *... *... .... *... .*.. .... .... *..* ``` ## Output without wrap ``` **.. **.. .... .... .... .... .... .... .... ``` This output is different than the input. ## Output with wrap ``` *.*. .... .... .... .... .... .... ...* .*** ``` This output is different than the input. ## Status The outputs are different.
StepOneTwoSizeSmallMediumBig
# Conway's Game of Life Perform 1 step. ## Input ``` ... .*. *.. *** ... .** ``` ## Output without wrap ``` ... ... *.* **. *.. ... ``` This output is different than the input. ## Output with wrap ``` *** ... ... *** ... ... ``` The columns are identical. This output is different than the input. ## Status The outputs are different.
StepOneSizeSmallMedium
# Conway's Game of Life Perform 1 step. ## Input ``` ..*. ..*. ...* .... .... .... ``` ## Output without wrap ``` .... ..** .... .... .... .... ``` This output is different than the input. ## Output with wrap ``` .... ..** .... .... .... .... ``` This output is different than the input. ## Status The outputs are identical.
StepOneTwoSizeSmall
# Conway's Game of Life Perform 2 steps. ## Input ``` .*.... .*.... ...... .*.... ``` ## Output without wrap ``` ...... ...... ...... ...... ``` All cells are empty. This output is different than the input. ## Output with wrap ``` .*.... .*.... ...... .*.... ``` This output is identical to the input. ## Status The outputs are different.
StepTwoSizeSmallMediumBig
# Conway's Game of Life Perform 2 steps. ## Input ``` ****.***. ******..* .******** *..****** *....***. ***.*.*** ********* .***.*.*. *..***.** .****.*** ``` ## Output without wrap ``` ......**. ......**. ......... .*....... .*....... ......... ......... ......... .*....... .*....... ``` This output is different than the input. ## Output with wrap ``` ......... ......... ......... ......... ......... ......... ......... ......... ......... ......... ``` All cells are empty. This output is different than the input. ## Status The outputs are different.
StepOneSizeSmallMediumBig
# Conway's Game of Life Perform 1 step. ## Input ``` *...*.*.... **...**.*.* .**.*.*.*.* ....***.*** **..*.**..* *.*.*...**. *.*.**..*** ..*.*.*..*. **.**.**..* ``` ## Output without wrap ``` **....**... *.***.*.... *****...*.* *.*.*...*.* **..*.*...* *.*.*.*.... ..*.*..*..* *.*...*.... .****.**... ``` This output is different than the input. ## Output with wrap ``` ..***....*. ..***.*...* .****...*.. ..*.*...*.. .*..*.*.... ..*.*.*.... *.*.*..*... ..*...*.... ***.*.**..* ``` This output is different than the input. ## Status The outputs are different.
StepTwoSizeSmallMedium
# Conway's Game of Life Perform 2 steps. ## Input ``` **...**.* **...**.. ......... ..*...... ......... .....*... ....*.... ......... *.......* ``` ## Output without wrap ``` **...*.*. ..*..*.*. **....*.. ......... ......... ......... ......... ......... ......... ``` This output is different than the input. ## Output with wrap ``` .....*... *....*.*. *.....**. ......... ......... ......... ......... ......... ......**. ``` This output is different than the input. ## Status The outputs are different.
StepOneSizeSmall
# Conway's Game of Life Perform 1 step. ## Input ``` **.* ..** .... ..** *..* *.*. ``` ## Output without wrap ``` .*.* .*** .... ..** ...* .*.. ``` This output is different than the input. ## Output with wrap ``` .... .*** .... *.** *... ..*. ``` This output is different than the input. ## Status The outputs are different.

Dataset with Conways Game of Life

Wikipedia - Game of life

This dataset contains 42300 items in total. There are 9 curriculums each containing 4700 items.

The images are between 3x3 and 14x14.

Each item in this dataset is a markdown file.

The markdown file has these sections: Input, Output without wrap, Output with wrap, Status.

Each of the Input images are unique.

The Perform N steps has these variants:

  • When it's Perform 1 step then one iteration is performed, easy.
  • When it's Perform 2 steps then two iterations are performed, hard.
Downloads last month
0
Edit dataset card