marble-machinations/levels/03_text/parse_decimal.json

13 lines
340 B
JSON
Raw Normal View History

2024-10-13 17:00:59 +02:00
{
"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",
"stages": [{
2024-12-18 22:25:08 +01:00
"input": "1 2 3",
"output": [1, 2, 3]
},{
"input": "85 114 32 103 97 121 58 51",
"output": [85, 114, 32, 103, 97, 121, 58, 51]
}]
2024-10-13 17:00:59 +02:00
}