curriculum
stringclasses 9
values | text
stringlengths 279
919
|
---|---|
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.
|
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 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.
|
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.
|
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.
|
StepOneTwoSizeSmall
|
# 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 identical.
|
StepOneSizeSmall
|
# 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.
|
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
```
..*
..*
*.*
*.*
..*
*..
..*
*..
*.*
```
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.
|
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.
|
StepOneTwoSizeSmallMedium
|
# 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.
|
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 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.
|
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
```
.........
.........
.........
.........
.........
.........
```
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.
|
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.
|
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
```
*.***
*****
.****
.****
.****
*****
*****
**.**
****.
```
## 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.
|
StepOneSizeSmallMediumBig
|
# 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
```
...
***
***
...
...
```
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 identical to the input.
Still life.
## 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.
|
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 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 identical to 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.
|
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.
|
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.
|
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.
|
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 identical.
|
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.
|
StepOneTwoSizeSmall
|
# 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.
|
StepTwoSizeSmallMedium
|
# Conway's Game of Life
Perform 2 steps.
## Input
```
.....
.....
.....
.....
.....
.....
.....
```
All cells are empty.
## Output without wrap
```
.....
.....
.....
.....
.....
.....
.....
```
All cells are empty.
This output is identical to the input.
## Output with wrap
```
.....
.....
.....
.....
.....
.....
.....
```
All cells are empty.
This output is identical to the input.
## Status
The outputs are identical.
|
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.
|
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.
|
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.
|
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 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
```
......
......
......
......
......
```
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.
|
StepOneTwoSizeSmallMediumBig
|
# Conway's Game of Life
Perform 2 steps.
## Input
```
..............
..............
..............
..............
..............
.........**...
.........**...
```
## Output without wrap
```
..............
..............
..............
..............
..............
.........**...
.........**...
```
This output is identical to the input.
## Output with wrap
```
..............
..............
..............
..............
..............
.........**...
.........**...
```
This output is identical to the input.
## Status
The outputs are identical.
|
StepOneSizeSmall
|
# 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.
|
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.
|
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.
|
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 identical.
|
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
```
...........
...........
...........
...........
...........
...........
...........
```
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.
|
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.
|
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
```
...
...
...
...
...
```
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.
|
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 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 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.
|
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 identical.
|
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.
|
StepOneTwoSizeSmallMedium
|
# 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.
|
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.
|
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.
|
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.
|
StepOneSizeSmallMediumBig
|
# Conway's Game of Life
Perform 1 step.
## 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.
|
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
```
...
...
...
...
...
***
...
...
...
***
...
...
```
The columns are identical.
## Output without wrap
```
...
...
...
...
...
***
...
...
...
***
...
...
```
The columns are identical.
This output is identical to 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.
|
StepOneSizeSmall
|
# 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.
|
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 identical.
|
StepTwoSizeSmall
|
# Conway's Game of Life
Perform 2 steps.
## Input
```
***
.**
..*
*..
```
## Output without wrap
```
.*.
...
...
...
```
Only one cell is alive.
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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.
|
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
```
**.*
*..*
*..*
**..
..*.
```
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.
|
StepTwoSizeSmall
|
# 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.
|
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
```
.....
..*..
.....
.....
.....
.....
```
Only one cell is alive.
This output is different than the input.
## Output with wrap
```
.....
..*..
.....
.....
.....
.....
```
Only one cell is alive.
This output is different than the input.
## Status
The outputs are identical.
|
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.
|
StepTwoSizeSmall
|
# 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.
|
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
```
.........
.........
.........
.........
.........
.........
.........
.........
```
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.
|
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
```
.........
.........
.........
.........
.........
.........
.........
.........
.........
```
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.
|
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.
|
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.
|
StepOneTwoSizeSmallMedium
|
# 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.
|
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.
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.