vtm/source/data/tasks.dat.js

237 lines
3.6 KiB
JavaScript
Raw Permalink Normal View History

2018-03-28 13:59:29 +02:00
jsonp_handle(
2017-11-09 14:06:35 +01:00
{
2018-03-28 13:59:29 +02:00
"key": "tasks",
"value": [
2017-11-09 14:06:35 +01:00
{
"id": "einfuehrung",
2018-03-28 13:59:29 +02:00
"kind": "acceptor",
2017-11-09 14:06:35 +01:00
"parameter": {
"tests": [
{
2018-03-28 13:59:29 +02:00
"input": [],
"accept": true
2017-11-09 14:06:35 +01:00
}
]
}
},
{
"id": "start_symbol",
2018-03-28 13:59:29 +02:00
"kind": "acceptor",
2017-11-09 14:06:35 +01:00
"parameter": {
"tests": [
{
2018-03-28 13:59:29 +02:00
"input": [],
"accept": false
2017-11-09 14:06:35 +01:00
},
{
2018-03-28 13:59:29 +02:00
"input": [0],
"accept": false
2017-11-09 14:06:35 +01:00
},
{
2018-03-28 13:59:29 +02:00
"input": [1],
"accept": true
2017-11-09 14:06:35 +01:00
},
{
2018-03-28 13:59:29 +02:00
"input": [0,1],
"accept": false
2017-11-09 14:06:35 +01:00
},
{
2018-03-28 13:59:29 +02:00
"input": [1,0,1,1,0,0,0,1,0],
"accept": true
2017-11-09 14:06:35 +01:00
}
]
}
},
{
"id": "dreifaltigkeit",
2018-03-28 13:59:29 +02:00
"kind": "acceptor",
2017-11-09 14:06:35 +01:00
"parameter": {
"tests": [
{
2018-03-28 13:59:29 +02:00
"input": [1],
"accept": false
2017-11-09 14:06:35 +01:00
},
{
2018-03-28 13:59:29 +02:00
"input": [0,0,1,1],
"accept": false
2017-11-09 14:06:35 +01:00
},
{
2018-03-28 13:59:29 +02:00
"input": [1,0,1,0,0,1,0],
"accept": true
2017-11-09 14:06:35 +01:00
}
]
}
},
2017-11-09 18:42:09 +01:00
{
"id": "abwechslung_erfreuet",
2018-03-28 13:59:29 +02:00
"kind": "acceptor",
2017-11-09 18:42:09 +01:00
"parameter": {
"tests": [
{
2018-03-28 13:59:29 +02:00
"input": [],
"accept": true
2017-11-09 18:42:09 +01:00
},
{
2018-03-28 13:59:29 +02:00
"input": [0],
"accept": true
2017-11-09 18:42:09 +01:00
},
{
2018-03-28 13:59:29 +02:00
"input": [0,0],
"accept": false
2017-11-09 18:42:09 +01:00
},
{
2018-03-28 13:59:29 +02:00
"input": [1,0,1],
"accept": true
2017-11-09 18:42:09 +01:00
},
{
2018-03-28 13:59:29 +02:00
"input": [0,1,0,1,0,1],
"accept": true
2017-11-09 18:42:09 +01:00
}
]
}
},
2017-11-09 14:06:35 +01:00
{
"id": "ans_ende",
2018-03-29 01:13:39 +02:00
"kind": "transducer",
2017-11-09 14:06:35 +01:00
"parameter": {
"tests": [
{
2018-03-28 13:59:29 +02:00
"input": [0,0,1,1,1,0,1,0,1,1,1,0,1],
"output": [0,1,1,1,0,1,0,1,1,1,0,1,0]
2017-11-09 14:06:35 +01:00
}
]
}
},
{
"id": "tauschen",
2018-03-29 01:13:39 +02:00
"kind": "transducer",
2017-11-09 14:06:35 +01:00
"parameter": {
2017-11-09 21:57:35 +01:00
"tests": [
{
2018-03-28 13:59:29 +02:00
"input": [0,1,1,0],
"output": [2,3,3,2]
2018-03-20 13:30:00 +01:00
},
{
2018-03-28 13:59:29 +02:00
"input": [0,1,0,1,0,1,1,0,0,0,0,1,0,1,1,0],
"output": [2,3,2,3,2,3,3,2,2,2,2,3,2,3,3,2]
2017-11-09 21:57:35 +01:00
}
]
}
},
{
"id": "waehlerisch",
2018-03-29 01:13:39 +02:00
"kind": "transducer",
2017-11-09 21:57:35 +01:00
"parameter": {
2017-11-09 14:06:35 +01:00
"tests": [
{
2018-03-28 13:59:29 +02:00
"input": [0,0,0,1,0],
"output": [1]
2017-11-09 14:06:35 +01:00
},
{
2018-03-28 13:59:29 +02:00
"input": [1,0,1,0,1],
"output": [1,1,1]
2017-11-09 14:06:35 +01:00
},
{
2018-03-28 13:59:29 +02:00
"input": [1,1,1,1,0],
"output": [1,1,1,1]
2017-11-09 14:06:35 +01:00
},
{
2018-03-28 13:59:29 +02:00
"input": [0,0,0,0,1,0,1,1,0],
"output": [1,1,1]
2017-11-10 00:05:15 +01:00
},
2017-11-09 18:42:09 +01:00
]
}
},
2017-11-10 01:20:40 +01:00
{
"id": "dekorator",
2018-03-29 01:13:39 +02:00
"kind": "transducer",
2017-11-10 01:20:40 +01:00
"parameter": {
"tests": [
{
2018-03-28 13:59:29 +02:00
"input": [1,1,0],
"output": [2,1,1,0,3]
2017-11-10 01:20:40 +01:00
},
{
2018-03-28 13:59:29 +02:00
"input": [0,0,1,0,0],
"output": [2,0,0,1,0,0,3]
2017-11-10 01:20:40 +01:00
}
]
}
},
{
"id": "alpha_und_omega",
2018-03-28 13:59:29 +02:00
"kind": "acceptor",
2017-11-10 01:20:40 +01:00
"parameter": {
"tests": [
{
2018-03-28 13:59:29 +02:00
"input": [],
"accept": true
2017-11-10 01:20:40 +01:00
},
{
2018-03-28 13:59:29 +02:00
"input": [1],
"accept": true
2017-11-10 01:20:40 +01:00
},
{
2018-03-28 13:59:29 +02:00
"input": [0,1],
"accept": false
2017-11-10 01:20:40 +01:00
},
{
2018-03-28 13:59:29 +02:00
"input": [0,1,1,1,0],
"accept": true
2017-11-10 01:20:40 +01:00
},
{
2018-03-28 13:59:29 +02:00
"input": [1,1,0,0],
"accept": false
2017-11-10 01:20:40 +01:00
},
{
2018-03-28 13:59:29 +02:00
"input": [1,0,1,1,1],
"accept": true
2017-11-10 01:20:40 +01:00
}
]
}
},
2017-11-09 18:42:09 +01:00
{
"id": "an_den_anfang",
2018-03-29 01:13:39 +02:00
"kind": "transducer",
2017-11-09 18:42:09 +01:00
"parameter": {
"tests": [
{
2018-03-28 13:59:29 +02:00
"input": [0,0,1,1,1,0,1,0,1,1,1,0,1],
"output": [1,0,0,1,1,1,0,1,0,1,1,1,0]
2017-11-09 14:06:35 +01:00
}
]
}
2017-11-09 21:57:35 +01:00
},
{
"id": "a_n_b_n",
2018-03-28 13:59:29 +02:00
"kind": "acceptor",
2017-11-09 21:57:35 +01:00
"parameter": {
"tests": [
{
2018-03-28 13:59:29 +02:00
"input": [],
"accept": true
2017-11-09 21:57:35 +01:00
},
{
2018-03-28 13:59:29 +02:00
"input": [0],
"accept": false
2017-11-09 21:57:35 +01:00
},
{
2018-03-28 13:59:29 +02:00
"input": [0,0,1,1],
"accept": true
2017-11-09 21:57:35 +01:00
},
{
2018-03-28 13:59:29 +02:00
"input": [0,0,0,1,1],
"accept": false
2017-11-09 21:57:35 +01:00
},
{
2018-03-28 13:59:29 +02:00
"input": [0,0,0,0,0,0,0,1,1,1,1,1,1,1],
"accept": true
2017-11-09 21:57:35 +01:00
}
]
}
2017-11-09 14:06:35 +01:00
}
]
}
);