Skip to content

Commit 93d9d83

Browse files
Add game-of-life input format documentation (#275)
1 parent 09cc41c commit 93d9d83

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Instructions append
2+
3+
## Input/Output format
4+
5+
Each row of the grid is represented as a 64 bit integer.
6+
7+
For example,
8+
9+
```
10+
0 1 0
11+
1 0 0
12+
1 1 0
13+
```
14+
15+
is represented as
16+
17+
```
18+
0b010
19+
0b100
20+
0b110
21+
```
22+
23+
The grid has at most 64 columns.

0 commit comments

Comments
 (0)