add more stages to levels
This commit is contained in:
parent
0d661e2d38
commit
fea00da8a3
8 changed files with 25 additions and 8 deletions
|
@ -4,12 +4,8 @@
|
|||
"name": "Zero",
|
||||
"description": "learn how to output data",
|
||||
"init_board": "\n o \n\n I\n\n",
|
||||
"stages": [
|
||||
{
|
||||
"input": [],
|
||||
"output": [
|
||||
0
|
||||
]
|
||||
}
|
||||
]
|
||||
"stages": [{
|
||||
"input": [],
|
||||
"output": [0]
|
||||
}]
|
||||
}
|
|
@ -4,6 +4,9 @@
|
|||
"name": "Odd Cat",
|
||||
"description": "copy only the odd numbers from the input",
|
||||
"stages": [{
|
||||
"input": [1, 2, 3, 4, 5, 6, 7],
|
||||
"output": [1, 3, 5, 7]
|
||||
},{
|
||||
"input": [112, 92, 51, 79, 112, 96, 84, 59, 195, 208, 137, 196, 68, 204, 82, 148, 251, 56, 105, 38, 63, 204, 240, 220, 180, 54, 211, 17, 82, 17, 181, 43],
|
||||
"output": [51, 79, 59, 195, 137, 251, 105, 63, 211, 17, 17, 181, 43]
|
||||
}]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue