add some ascii levels
This commit is contained in:
parent
7d3b455fcd
commit
81b1adfa6f
4 changed files with 43 additions and 7 deletions
11
levels/03_text/ascii_to_lower.json
Normal file
11
levels/03_text/ascii_to_lower.json
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"id": "ascii_to_lower",
|
||||
"sort_order": 35,
|
||||
"name": "Lowercase",
|
||||
"description": "Convert text to lowercase",
|
||||
"init_board": null,
|
||||
"inputs": [73, 32, 67, 114, 97, 86, 101, 68, 32, 116, 72, 69, 32, 115, 116, 114, 69, 110, 71, 84, 72, 32, 65, 78, 68, 32, 67, 101, 114, 84, 65, 105, 110, 84, 121, 32, 111, 70, 32, 83, 84, 101, 101, 76],
|
||||
"outputs": [105, 32, 99, 114, 97, 118, 101, 100, 32, 116, 104, 101, 32, 115, 116, 114, 101, 110, 103, 116, 104, 32, 97, 110, 100, 32, 99, 101, 114, 116, 97, 105, 110, 116, 121, 32, 111, 102, 32, 115, 116, 101, 101, 108],
|
||||
"input_is_text": true,
|
||||
"output_is_text": true
|
||||
}
|
11
levels/03_text/output_decimal.json
Normal file
11
levels/03_text/output_decimal.json
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"id": "output_decimal",
|
||||
"sort_order": 31,
|
||||
"name": "Numbers",
|
||||
"description": "Convert input numbers to text, separated by spaces (32)\n'0' = 48, '1' = 49, '2' = 50, and so on",
|
||||
"init_board": null,
|
||||
"inputs": [85, 114, 32, 103, 97, 121, 58, 51],
|
||||
"outputs": [56, 53, 32, 49, 49, 52, 32, 51, 50, 32, 49, 48, 51, 32, 57, 55, 32, 49, 50, 49, 32, 51, 50, 32, 53, 56, 32, 53, 49],
|
||||
"input_is_text": false,
|
||||
"output_is_text": true
|
||||
}
|
11
levels/03_text/parse_decimal.json
Normal file
11
levels/03_text/parse_decimal.json
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"id": "parse_decimal",
|
||||
"sort_order": 33,
|
||||
"name": "Numbers 2",
|
||||
"description": "Convert input numbers from text, separated by spaces (32)\n'0' = 48, '1' = 49, '2' = 50, and so on",
|
||||
"init_board": null,
|
||||
"inputs": [56, 53, 32, 49, 49, 52, 32, 51, 50, 32, 49, 48, 51, 32, 57, 55, 32, 49, 50, 49, 32, 51, 50, 32, 53, 56, 32, 53, 49],
|
||||
"outputs": [85, 114, 32, 103, 97, 121, 58, 51],
|
||||
"input_is_text": true,
|
||||
"output_is_text": false
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue