query_id
stringlengths 36
36
| fsm_id
stringclasses 25
values | fsm_json
stringclasses 21
values | difficulty_level
int64 1
4
| transition_matrix
stringclasses 21
values | query
stringlengths 161
530
| answer
stringclasses 8
values | substring_index
int64 1
20
| number_of_states
int64 1
8
| number_of_alphabets
int64 1
8
| state_alpha_combo
stringclasses 19
values |
---|---|---|---|---|---|---|---|---|---|---|
c3780eab-0e0d-43ac-9f01-b9e522483a6e | 1b2966b3-6c97-415e-9b3f-e0faf8d3dd07 | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a ? | s0 | 1 | 1 | 1 | 1_1 |
1e032525-ba0c-4402-a840-1a25e1931f5a | 1b2966b3-6c97-415e-9b3f-e0faf8d3dd07 | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a ? | s0 | 2 | 1 | 1 | 1_1 |
1ff51c69-e26b-44f2-a7f2-e985f011acab | 1b2966b3-6c97-415e-9b3f-e0faf8d3dd07 | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a ? | s0 | 3 | 1 | 1 | 1_1 |
00379796-bf86-43f8-a69d-96b642970bd8 | 1b2966b3-6c97-415e-9b3f-e0faf8d3dd07 | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a ? | s0 | 4 | 1 | 1 | 1_1 |
e8dd6c32-69dc-4bda-8928-24d4acefb48c | 1b2966b3-6c97-415e-9b3f-e0faf8d3dd07 | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a ? | s0 | 5 | 1 | 1 | 1_1 |
afc64f93-6e46-4254-8564-bc74d80d13f8 | 1b2966b3-6c97-415e-9b3f-e0faf8d3dd07 | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a a ? | s0 | 6 | 1 | 1 | 1_1 |
2efa16f7-5f64-4550-875f-4591967b298b | 1b2966b3-6c97-415e-9b3f-e0faf8d3dd07 | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a a a ? | s0 | 7 | 1 | 1 | 1_1 |
ca0af251-3740-4a2f-a092-113cdba0e881 | 1b2966b3-6c97-415e-9b3f-e0faf8d3dd07 | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a a a a ? | s0 | 8 | 1 | 1 | 1_1 |
d9e0155f-3c21-47a8-a651-ea2ab4390e8f | 1b2966b3-6c97-415e-9b3f-e0faf8d3dd07 | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a a a a a ? | s0 | 9 | 1 | 1 | 1_1 |
12f8d6ba-5b1c-47e5-8ec1-735a0825f9f3 | 1b2966b3-6c97-415e-9b3f-e0faf8d3dd07 | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a a a a a a ? | s0 | 10 | 1 | 1 | 1_1 |
c5c04e2a-290a-4760-9939-80a9e95e4888 | 1b2966b3-6c97-415e-9b3f-e0faf8d3dd07 | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a a a a a a a ? | s0 | 11 | 1 | 1 | 1_1 |
4e23e125-59cd-426c-8b80-755b6d0201ae | 1b2966b3-6c97-415e-9b3f-e0faf8d3dd07 | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a a a a a a a a ? | s0 | 12 | 1 | 1 | 1_1 |
52c63f88-5d30-418e-a0bb-adedaadfebb6 | 1b2966b3-6c97-415e-9b3f-e0faf8d3dd07 | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a a a a a a a a a ? | s0 | 13 | 1 | 1 | 1_1 |
ff8b2550-134b-4d71-bebd-ecf4aeaf7172 | 1b2966b3-6c97-415e-9b3f-e0faf8d3dd07 | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a a a a a a a a a a ? | s0 | 14 | 1 | 1 | 1_1 |
123941ce-d188-4dd8-a26a-c43868f859f4 | 1b2966b3-6c97-415e-9b3f-e0faf8d3dd07 | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a a a a a a a a a a a ? | s0 | 15 | 1 | 1 | 1_1 |
51c21b63-a545-44ba-8184-f9df4584c0ff | 1b2966b3-6c97-415e-9b3f-e0faf8d3dd07 | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a a a a a a a a a a a a ? | s0 | 16 | 1 | 1 | 1_1 |
26c45741-49fd-4a55-8376-9b414614b460 | 1b2966b3-6c97-415e-9b3f-e0faf8d3dd07 | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a a a a a a a a a a a a a ? | s0 | 17 | 1 | 1 | 1_1 |
eacc2a5c-4c70-4824-8529-58ffcadf5a02 | 1b2966b3-6c97-415e-9b3f-e0faf8d3dd07 | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a a a a a a a a a a a a a a ? | s0 | 18 | 1 | 1 | 1_1 |
ddecb78c-5d89-4f91-abf3-c4f3494988f9 | 1b2966b3-6c97-415e-9b3f-e0faf8d3dd07 | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a a a a a a a a a a a a a a a ? | s0 | 19 | 1 | 1 | 1_1 |
5c1e4e9b-332c-4883-bd3a-87276e32f1eb | 1b2966b3-6c97-415e-9b3f-e0faf8d3dd07 | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a a a a a a a a a a a a a a a a ? | s0 | 20 | 1 | 1 | 1_1 |
31325e97-8175-4a52-882b-3c899242f8fc | 7af73a35-7adf-41ab-a019-39c8d1e5dae1 | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a ? | s0 | 1 | 1 | 1 | 1_1 |
e4e26cf3-e202-4765-bd17-cf014d2597c4 | 7af73a35-7adf-41ab-a019-39c8d1e5dae1 | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a ? | s0 | 2 | 1 | 1 | 1_1 |
b36154c1-7dc9-49a8-9421-ce174a7ffbff | 7af73a35-7adf-41ab-a019-39c8d1e5dae1 | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a ? | s0 | 3 | 1 | 1 | 1_1 |
de9a7226-c1db-4fca-9d94-3beb9a1e6983 | 7af73a35-7adf-41ab-a019-39c8d1e5dae1 | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a ? | s0 | 4 | 1 | 1 | 1_1 |
c1c30d67-fa8d-46db-8446-e36f31d3720d | 7af73a35-7adf-41ab-a019-39c8d1e5dae1 | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a ? | s0 | 5 | 1 | 1 | 1_1 |
2ee22edc-eb0a-455a-81fd-b8af2fdd7491 | 7af73a35-7adf-41ab-a019-39c8d1e5dae1 | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a a ? | s0 | 6 | 1 | 1 | 1_1 |
2cc9324d-b4fc-41bb-801f-a150287b341b | 7af73a35-7adf-41ab-a019-39c8d1e5dae1 | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a a a ? | s0 | 7 | 1 | 1 | 1_1 |
ff370ed1-2c2f-4135-86a2-115dcf58ec4f | 7af73a35-7adf-41ab-a019-39c8d1e5dae1 | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a a a a ? | s0 | 8 | 1 | 1 | 1_1 |
b9ea4be4-6aae-43ed-ab4e-a91e4f4936f0 | 7af73a35-7adf-41ab-a019-39c8d1e5dae1 | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a a a a a ? | s0 | 9 | 1 | 1 | 1_1 |
8be124ec-78cb-4a42-9da6-0b55d68d339d | 7af73a35-7adf-41ab-a019-39c8d1e5dae1 | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a a a a a a ? | s0 | 10 | 1 | 1 | 1_1 |
a57b6ef0-118d-4d36-a625-c127e3811e4f | 7af73a35-7adf-41ab-a019-39c8d1e5dae1 | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a a a a a a a ? | s0 | 11 | 1 | 1 | 1_1 |
2ddd6772-3273-460b-b1bd-149705a4f7bb | 7af73a35-7adf-41ab-a019-39c8d1e5dae1 | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a a a a a a a a ? | s0 | 12 | 1 | 1 | 1_1 |
4ba4f64e-c68a-4344-8930-2bce5fc1a13c | 7af73a35-7adf-41ab-a019-39c8d1e5dae1 | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a a a a a a a a a ? | s0 | 13 | 1 | 1 | 1_1 |
f7ba22a0-3029-4ed6-94e4-485f9337a0b5 | 7af73a35-7adf-41ab-a019-39c8d1e5dae1 | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a a a a a a a a a a ? | s0 | 14 | 1 | 1 | 1_1 |
6ecf63e4-af65-47e2-9264-c6757b808e34 | 7af73a35-7adf-41ab-a019-39c8d1e5dae1 | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a a a a a a a a a a a ? | s0 | 15 | 1 | 1 | 1_1 |
e7cf3647-dbd1-482b-852d-d077ede76513 | 7af73a35-7adf-41ab-a019-39c8d1e5dae1 | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a a a a a a a a a a a a ? | s0 | 16 | 1 | 1 | 1_1 |
1d80322b-95c4-4d86-8cab-30c9d1da7278 | 7af73a35-7adf-41ab-a019-39c8d1e5dae1 | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a a a a a a a a a a a a a ? | s0 | 17 | 1 | 1 | 1_1 |
1b179024-9d11-4d64-a016-41977c0a7ab0 | 7af73a35-7adf-41ab-a019-39c8d1e5dae1 | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a a a a a a a a a a a a a a ? | s0 | 18 | 1 | 1 | 1_1 |
1bfe759c-9df8-4778-839e-4c727b5171e3 | 7af73a35-7adf-41ab-a019-39c8d1e5dae1 | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a a a a a a a a a a a a a a a ? | s0 | 19 | 1 | 1 | 1_1 |
27b451db-460b-4ef6-b699-7f14998b7238 | 7af73a35-7adf-41ab-a019-39c8d1e5dae1 | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a a a a a a a a a a a a a a a a ? | s0 | 20 | 1 | 1 | 1_1 |
d1e668d5-03f3-464b-ae99-cfbad6a4f4e6 | 782eb517-8ea8-4533-8c3d-aef8acbb61a6 | {"states": ["s0"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}]} | 1 | {"a":{"s0":"s0"},"b":{"s0":"s0"}} | Given the following FSM:
a b
s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b ? | s0 | 1 | 1 | 2 | 1_2 |
8fa1ffb4-f9a6-4059-a7d0-bb23660fcf09 | 782eb517-8ea8-4533-8c3d-aef8acbb61a6 | {"states": ["s0"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}]} | 1 | {"a":{"s0":"s0"},"b":{"s0":"s0"}} | Given the following FSM:
a b
s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b b ? | s0 | 2 | 1 | 2 | 1_2 |
76260cfc-6ca6-4366-ade9-4014460422f4 | 782eb517-8ea8-4533-8c3d-aef8acbb61a6 | {"states": ["s0"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}]} | 1 | {"a":{"s0":"s0"},"b":{"s0":"s0"}} | Given the following FSM:
a b
s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b b b ? | s0 | 3 | 1 | 2 | 1_2 |
c3fb0d74-70cb-450a-9aa2-7f30906482a0 | 782eb517-8ea8-4533-8c3d-aef8acbb61a6 | {"states": ["s0"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}]} | 1 | {"a":{"s0":"s0"},"b":{"s0":"s0"}} | Given the following FSM:
a b
s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b b b a ? | s0 | 4 | 1 | 2 | 1_2 |
0db87f85-9a14-4088-aff5-b731b7c70639 | 782eb517-8ea8-4533-8c3d-aef8acbb61a6 | {"states": ["s0"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}]} | 1 | {"a":{"s0":"s0"},"b":{"s0":"s0"}} | Given the following FSM:
a b
s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b b b a a ? | s0 | 5 | 1 | 2 | 1_2 |
f868f8a6-24a3-4464-ba63-ebd7cfefb804 | 782eb517-8ea8-4533-8c3d-aef8acbb61a6 | {"states": ["s0"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}]} | 1 | {"a":{"s0":"s0"},"b":{"s0":"s0"}} | Given the following FSM:
a b
s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b b b a a b ? | s0 | 6 | 1 | 2 | 1_2 |
8a3aa7ac-1f31-488d-91d5-0e984d22c5a8 | 782eb517-8ea8-4533-8c3d-aef8acbb61a6 | {"states": ["s0"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}]} | 1 | {"a":{"s0":"s0"},"b":{"s0":"s0"}} | Given the following FSM:
a b
s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b b b a a b a ? | s0 | 7 | 1 | 2 | 1_2 |
30ea2afd-04e0-4081-b45a-fe26329aab12 | 782eb517-8ea8-4533-8c3d-aef8acbb61a6 | {"states": ["s0"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}]} | 1 | {"a":{"s0":"s0"},"b":{"s0":"s0"}} | Given the following FSM:
a b
s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b b b a a b a b ? | s0 | 8 | 1 | 2 | 1_2 |
92169e5f-aa74-4300-b3bf-b1f599ac09a4 | 782eb517-8ea8-4533-8c3d-aef8acbb61a6 | {"states": ["s0"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}]} | 1 | {"a":{"s0":"s0"},"b":{"s0":"s0"}} | Given the following FSM:
a b
s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b b b a a b a b a ? | s0 | 9 | 1 | 2 | 1_2 |
3efd0fd2-e323-47a0-ba0d-41f33642f364 | 782eb517-8ea8-4533-8c3d-aef8acbb61a6 | {"states": ["s0"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}]} | 1 | {"a":{"s0":"s0"},"b":{"s0":"s0"}} | Given the following FSM:
a b
s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b b b a a b a b a b ? | s0 | 10 | 1 | 2 | 1_2 |
1d4c0ca9-8f9f-450d-a00a-1248e3330084 | 782eb517-8ea8-4533-8c3d-aef8acbb61a6 | {"states": ["s0"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}]} | 1 | {"a":{"s0":"s0"},"b":{"s0":"s0"}} | Given the following FSM:
a b
s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b b b a a b a b a b b ? | s0 | 11 | 1 | 2 | 1_2 |
11005895-cc0a-4d51-a739-ba37aaf00585 | 782eb517-8ea8-4533-8c3d-aef8acbb61a6 | {"states": ["s0"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}]} | 1 | {"a":{"s0":"s0"},"b":{"s0":"s0"}} | Given the following FSM:
a b
s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b b b a a b a b a b b a ? | s0 | 12 | 1 | 2 | 1_2 |
8817c716-9ac6-4416-80cd-a84b7a397c72 | 782eb517-8ea8-4533-8c3d-aef8acbb61a6 | {"states": ["s0"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}]} | 1 | {"a":{"s0":"s0"},"b":{"s0":"s0"}} | Given the following FSM:
a b
s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b b b a a b a b a b b a a ? | s0 | 13 | 1 | 2 | 1_2 |
b0d82f5a-5db7-4612-968c-2412b60ab3f3 | 782eb517-8ea8-4533-8c3d-aef8acbb61a6 | {"states": ["s0"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}]} | 1 | {"a":{"s0":"s0"},"b":{"s0":"s0"}} | Given the following FSM:
a b
s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b b b a a b a b a b b a a b ? | s0 | 14 | 1 | 2 | 1_2 |
19c2a73d-f83a-4d0a-96ca-cc425dabff92 | 782eb517-8ea8-4533-8c3d-aef8acbb61a6 | {"states": ["s0"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}]} | 1 | {"a":{"s0":"s0"},"b":{"s0":"s0"}} | Given the following FSM:
a b
s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b b b a a b a b a b b a a b a ? | s0 | 15 | 1 | 2 | 1_2 |
c6304491-0cb5-4e62-9f77-4b872189fd73 | 782eb517-8ea8-4533-8c3d-aef8acbb61a6 | {"states": ["s0"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}]} | 1 | {"a":{"s0":"s0"},"b":{"s0":"s0"}} | Given the following FSM:
a b
s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b b b a a b a b a b b a a b a a ? | s0 | 16 | 1 | 2 | 1_2 |
760d3000-f7a1-4faa-881c-5b381d5b1fc8 | 782eb517-8ea8-4533-8c3d-aef8acbb61a6 | {"states": ["s0"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}]} | 1 | {"a":{"s0":"s0"},"b":{"s0":"s0"}} | Given the following FSM:
a b
s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b b b a a b a b a b b a a b a a a ? | s0 | 17 | 1 | 2 | 1_2 |
deb9868d-ccd7-4ce7-8396-666583558d77 | 782eb517-8ea8-4533-8c3d-aef8acbb61a6 | {"states": ["s0"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}]} | 1 | {"a":{"s0":"s0"},"b":{"s0":"s0"}} | Given the following FSM:
a b
s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b b b a a b a b a b b a a b a a a b ? | s0 | 18 | 1 | 2 | 1_2 |
1f020ba4-ff5c-42e0-bb33-7598c79055df | 782eb517-8ea8-4533-8c3d-aef8acbb61a6 | {"states": ["s0"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}]} | 1 | {"a":{"s0":"s0"},"b":{"s0":"s0"}} | Given the following FSM:
a b
s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b b b a a b a b a b b a a b a a a b b ? | s0 | 19 | 1 | 2 | 1_2 |
0cd01f7f-4e3a-4d1f-89be-1d249a40727f | 782eb517-8ea8-4533-8c3d-aef8acbb61a6 | {"states": ["s0"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}]} | 1 | {"a":{"s0":"s0"},"b":{"s0":"s0"}} | Given the following FSM:
a b
s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b b b a a b a b a b b a a b a a a b b a ? | s0 | 20 | 1 | 2 | 1_2 |
8238bb5d-7864-4daa-9455-05b4bf6d6c34 | 234268d1-360a-408c-a46e-9e9e0881c44c | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a ? | s0 | 1 | 1 | 1 | 1_1 |
d2b700fe-10b0-4b44-a255-96e94c20f08c | 234268d1-360a-408c-a46e-9e9e0881c44c | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a ? | s0 | 2 | 1 | 1 | 1_1 |
04f3abcf-6372-4ec4-a405-ae4438a5260e | 234268d1-360a-408c-a46e-9e9e0881c44c | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a ? | s0 | 3 | 1 | 1 | 1_1 |
9ade240f-d64c-4a44-a11b-90f667235df4 | 234268d1-360a-408c-a46e-9e9e0881c44c | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a ? | s0 | 4 | 1 | 1 | 1_1 |
a1662a2b-fba9-4314-a36d-ccc8e7a1ad24 | 234268d1-360a-408c-a46e-9e9e0881c44c | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a ? | s0 | 5 | 1 | 1 | 1_1 |
8c59cd5a-d2af-44dd-84a8-1b1d1903a758 | 234268d1-360a-408c-a46e-9e9e0881c44c | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a a ? | s0 | 6 | 1 | 1 | 1_1 |
e3b7f1d3-70b9-4edc-8c2d-fbbe3fbc71fb | 234268d1-360a-408c-a46e-9e9e0881c44c | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a a a ? | s0 | 7 | 1 | 1 | 1_1 |
0e129738-e7c9-4282-aeaf-01bb41e3ec5a | 234268d1-360a-408c-a46e-9e9e0881c44c | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a a a a ? | s0 | 8 | 1 | 1 | 1_1 |
eba61c06-e9f5-44df-9908-4509c44018b3 | 234268d1-360a-408c-a46e-9e9e0881c44c | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a a a a a ? | s0 | 9 | 1 | 1 | 1_1 |
21be036b-90bb-4b19-9d3b-8f1fa1c34347 | 234268d1-360a-408c-a46e-9e9e0881c44c | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a a a a a a ? | s0 | 10 | 1 | 1 | 1_1 |
0e66e49a-b885-4eed-8896-482c48a8941c | 234268d1-360a-408c-a46e-9e9e0881c44c | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a a a a a a a ? | s0 | 11 | 1 | 1 | 1_1 |
1e30b80a-f5ba-4f8e-b7f5-16f4ec5f417f | 234268d1-360a-408c-a46e-9e9e0881c44c | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a a a a a a a a ? | s0 | 12 | 1 | 1 | 1_1 |
f9787f4c-484f-4ca9-9834-976cc12665d4 | 234268d1-360a-408c-a46e-9e9e0881c44c | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a a a a a a a a a ? | s0 | 13 | 1 | 1 | 1_1 |
b91e7702-e18f-4a03-9ab8-eb20fc937d20 | 234268d1-360a-408c-a46e-9e9e0881c44c | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a a a a a a a a a a ? | s0 | 14 | 1 | 1 | 1_1 |
82a93b5e-87a6-4a67-80ee-b49dc3413ebb | 234268d1-360a-408c-a46e-9e9e0881c44c | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a a a a a a a a a a a ? | s0 | 15 | 1 | 1 | 1_1 |
5a42a461-faff-4a1f-b56b-139085185707 | 234268d1-360a-408c-a46e-9e9e0881c44c | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a a a a a a a a a a a a ? | s0 | 16 | 1 | 1 | 1_1 |
29a6e711-68fb-4bcb-8d57-5afecc85192f | 234268d1-360a-408c-a46e-9e9e0881c44c | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a a a a a a a a a a a a a ? | s0 | 17 | 1 | 1 | 1_1 |
806e1d28-4406-4a06-932a-268c642d209d | 234268d1-360a-408c-a46e-9e9e0881c44c | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a a a a a a a a a a a a a a ? | s0 | 18 | 1 | 1 | 1_1 |
a5fc426d-8325-4f1c-9153-47b988c2f5b8 | 234268d1-360a-408c-a46e-9e9e0881c44c | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a a a a a a a a a a a a a a a ? | s0 | 19 | 1 | 1 | 1_1 |
8f97cb50-7c9c-45c4-ae5e-0dec1f5a3ed4 | 234268d1-360a-408c-a46e-9e9e0881c44c | {"states": ["s0"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s0"}} | Given the following FSM:
a
s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a a a a a a a a a a a a a a a a ? | s0 | 20 | 1 | 1 | 1_1 |
0db1ef29-db8b-4042-b70a-24665f98eee6 | f33e2582-789a-4937-a428-307b30d59888 | {"states": ["s0"], "alphabets": "abcd", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"}} | Given the following FSM:
a b c d
s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a ? | s0 | 1 | 1 | 4 | 1_4 |
c3dd4649-feb9-4891-8e6d-5a06fbb877c4 | f33e2582-789a-4937-a428-307b30d59888 | {"states": ["s0"], "alphabets": "abcd", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"}} | Given the following FSM:
a b c d
s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a b ? | s0 | 2 | 1 | 4 | 1_4 |
64a4be53-4156-484e-9af4-288a9d34440f | f33e2582-789a-4937-a428-307b30d59888 | {"states": ["s0"], "alphabets": "abcd", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"}} | Given the following FSM:
a b c d
s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a b c ? | s0 | 3 | 1 | 4 | 1_4 |
99acf5d5-edac-42a6-8496-dc2f505ce4e1 | f33e2582-789a-4937-a428-307b30d59888 | {"states": ["s0"], "alphabets": "abcd", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"}} | Given the following FSM:
a b c d
s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a b c b ? | s0 | 4 | 1 | 4 | 1_4 |
dcfecb22-a99f-4de3-9193-9844fed02707 | f33e2582-789a-4937-a428-307b30d59888 | {"states": ["s0"], "alphabets": "abcd", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"}} | Given the following FSM:
a b c d
s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a b c b b ? | s0 | 5 | 1 | 4 | 1_4 |
4446e5e0-0430-4abb-9730-07475f1002af | f33e2582-789a-4937-a428-307b30d59888 | {"states": ["s0"], "alphabets": "abcd", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"}} | Given the following FSM:
a b c d
s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a b c b b a ? | s0 | 6 | 1 | 4 | 1_4 |
67f5e3d8-7b16-43a1-a3f6-d7fca0502c74 | f33e2582-789a-4937-a428-307b30d59888 | {"states": ["s0"], "alphabets": "abcd", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"}} | Given the following FSM:
a b c d
s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a b c b b a d ? | s0 | 7 | 1 | 4 | 1_4 |
f0b0587c-4795-49de-ba32-6f73cc176cfd | f33e2582-789a-4937-a428-307b30d59888 | {"states": ["s0"], "alphabets": "abcd", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"}} | Given the following FSM:
a b c d
s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a b c b b a d b ? | s0 | 8 | 1 | 4 | 1_4 |
aaa66616-2505-40a6-bdee-94683a8a1c03 | f33e2582-789a-4937-a428-307b30d59888 | {"states": ["s0"], "alphabets": "abcd", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"}} | Given the following FSM:
a b c d
s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a b c b b a d b d ? | s0 | 9 | 1 | 4 | 1_4 |
c7c17713-5f06-424f-83c5-a1c12a9876fc | f33e2582-789a-4937-a428-307b30d59888 | {"states": ["s0"], "alphabets": "abcd", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"}} | Given the following FSM:
a b c d
s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a b c b b a d b d c ? | s0 | 10 | 1 | 4 | 1_4 |
a34bf405-5394-481c-9aec-93eaf8989955 | f33e2582-789a-4937-a428-307b30d59888 | {"states": ["s0"], "alphabets": "abcd", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"}} | Given the following FSM:
a b c d
s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a b c b b a d b d c c ? | s0 | 11 | 1 | 4 | 1_4 |
71a35440-3572-452b-9da8-ecda1492cd11 | f33e2582-789a-4937-a428-307b30d59888 | {"states": ["s0"], "alphabets": "abcd", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"}} | Given the following FSM:
a b c d
s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a b c b b a d b d c c a ? | s0 | 12 | 1 | 4 | 1_4 |
5ddf551d-9d24-46de-8804-4f6fa5b451a8 | f33e2582-789a-4937-a428-307b30d59888 | {"states": ["s0"], "alphabets": "abcd", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"}} | Given the following FSM:
a b c d
s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a b c b b a d b d c c a d ? | s0 | 13 | 1 | 4 | 1_4 |
35f86c3e-b139-48fd-965e-277fff6675b5 | f33e2582-789a-4937-a428-307b30d59888 | {"states": ["s0"], "alphabets": "abcd", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"}} | Given the following FSM:
a b c d
s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a b c b b a d b d c c a d c ? | s0 | 14 | 1 | 4 | 1_4 |
fcd9848e-4331-4b2d-9249-2414ccd1443c | f33e2582-789a-4937-a428-307b30d59888 | {"states": ["s0"], "alphabets": "abcd", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"}} | Given the following FSM:
a b c d
s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a b c b b a d b d c c a d c c ? | s0 | 15 | 1 | 4 | 1_4 |
229d74ac-f7d0-421e-a079-840d327d0aaf | f33e2582-789a-4937-a428-307b30d59888 | {"states": ["s0"], "alphabets": "abcd", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"}} | Given the following FSM:
a b c d
s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a b c b b a d b d c c a d c c b ? | s0 | 16 | 1 | 4 | 1_4 |
702d4c47-fc91-4c01-849e-36374732e251 | f33e2582-789a-4937-a428-307b30d59888 | {"states": ["s0"], "alphabets": "abcd", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"}} | Given the following FSM:
a b c d
s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a b c b b a d b d c c a d c c b a ? | s0 | 17 | 1 | 4 | 1_4 |
d7addcbc-e979-4caa-ab6f-0ca39e286275 | f33e2582-789a-4937-a428-307b30d59888 | {"states": ["s0"], "alphabets": "abcd", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"}} | Given the following FSM:
a b c d
s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a b c b b a d b d c c a d c c b a b ? | s0 | 18 | 1 | 4 | 1_4 |
b32bc9b8-2e73-4a4b-9ecf-467b5c64579d | f33e2582-789a-4937-a428-307b30d59888 | {"states": ["s0"], "alphabets": "abcd", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"}} | Given the following FSM:
a b c d
s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a b c b b a d b d c c a d c c b a b a ? | s0 | 19 | 1 | 4 | 1_4 |
b991d151-b081-499b-ba8e-39f0acd52c60 | f33e2582-789a-4937-a428-307b30d59888 | {"states": ["s0"], "alphabets": "abcd", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"}} | Given the following FSM:
a b c d
s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a b c b b a d b d c c a d c c b a b a b ? | s0 | 20 | 1 | 4 | 1_4 |
End of preview. Expand
in Dataset Viewer.
Details
List of models that have been used to calculate this set: We calculated the intersection of FSMs that all models can solve the first transition.
- CodeLlama-70b-Instruct-hf
- GPT-4-0125-preview
- Llama-2-70b-chat-hf
- Mistral-7B-Instruct-v0.2
- Mixtral-8x7B-Instruct-v0.1
- Qwen1.5-72B-Chat
- StripedHyena-Nous-7B
- Yi-34B-Chat
- claude-3-haiku-20240307
- claude-3-opus-20240229
- gemma-7b-it
- gpt-3.5-turbo-0125
- gpt-4-turbo-2024-04-09
- Downloads last month
- 33