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 |
---|---|---|---|---|---|---|---|---|---|---|
1ce9581d-3a5a-4547-9a72-713446798593 | c4de8968-a715-4abf-86f4-0952f3f19492 | {"states": ["s0"], "alphabets": "abcde", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}} | Given the following FSM:
a b c d e
s0 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 | 5 | 1_5 |
56dbced5-697a-4297-95cb-1f5a378af17c | c4de8968-a715-4abf-86f4-0952f3f19492 | {"states": ["s0"], "alphabets": "abcde", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}} | Given the following FSM:
a b c d e
s0 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 c ? | s0 | 2 | 1 | 5 | 1_5 |
c4d520ec-e742-4146-90ba-48c69c174900 | c4de8968-a715-4abf-86f4-0952f3f19492 | {"states": ["s0"], "alphabets": "abcde", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}} | Given the following FSM:
a b c d e
s0 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 c a ? | s0 | 3 | 1 | 5 | 1_5 |
f1dede1d-c4e8-4313-86dd-e2198c2ca992 | c4de8968-a715-4abf-86f4-0952f3f19492 | {"states": ["s0"], "alphabets": "abcde", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}} | Given the following FSM:
a b c d e
s0 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 c a c ? | s0 | 4 | 1 | 5 | 1_5 |
0945f72f-fd60-4f69-8f53-15ba75d3369e | c4de8968-a715-4abf-86f4-0952f3f19492 | {"states": ["s0"], "alphabets": "abcde", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}} | Given the following FSM:
a b c d e
s0 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 c a c c ? | s0 | 5 | 1 | 5 | 1_5 |
8d3a2b47-e046-49b4-83af-b6f542b139a4 | c4de8968-a715-4abf-86f4-0952f3f19492 | {"states": ["s0"], "alphabets": "abcde", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}} | Given the following FSM:
a b c d e
s0 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 c a c c a ? | s0 | 6 | 1 | 5 | 1_5 |
81581754-a254-4a54-9ebf-06bc86faf0de | c4de8968-a715-4abf-86f4-0952f3f19492 | {"states": ["s0"], "alphabets": "abcde", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}} | Given the following FSM:
a b c d e
s0 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 c a c c a a ? | s0 | 7 | 1 | 5 | 1_5 |
ef6eb15b-02c8-41ce-849f-0530123062bf | c4de8968-a715-4abf-86f4-0952f3f19492 | {"states": ["s0"], "alphabets": "abcde", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}} | Given the following FSM:
a b c d e
s0 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 c a c c a a b ? | s0 | 8 | 1 | 5 | 1_5 |
ad453ac4-5296-49cf-8bff-9d507270f822 | c4de8968-a715-4abf-86f4-0952f3f19492 | {"states": ["s0"], "alphabets": "abcde", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}} | Given the following FSM:
a b c d e
s0 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 c a c c a a b d ? | s0 | 9 | 1 | 5 | 1_5 |
1626401b-d823-41fd-abfa-ee44fa5fb7cd | c4de8968-a715-4abf-86f4-0952f3f19492 | {"states": ["s0"], "alphabets": "abcde", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}} | Given the following FSM:
a b c d e
s0 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 c a c c a a b d e ? | s0 | 10 | 1 | 5 | 1_5 |
981b99af-e7be-400f-a935-737529119e1a | c4de8968-a715-4abf-86f4-0952f3f19492 | {"states": ["s0"], "alphabets": "abcde", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}} | Given the following FSM:
a b c d e
s0 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 c a c c a a b d e e ? | s0 | 11 | 1 | 5 | 1_5 |
c3fd3162-586f-454f-9bf2-c15a83bd9488 | c4de8968-a715-4abf-86f4-0952f3f19492 | {"states": ["s0"], "alphabets": "abcde", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}} | Given the following FSM:
a b c d e
s0 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 c a c c a a b d e e c ? | s0 | 12 | 1 | 5 | 1_5 |
879c5520-f14f-4cfe-89be-5b172e45155b | c4de8968-a715-4abf-86f4-0952f3f19492 | {"states": ["s0"], "alphabets": "abcde", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}} | Given the following FSM:
a b c d e
s0 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 c a c c a a b d e e c b ? | s0 | 13 | 1 | 5 | 1_5 |
e3e72485-c439-4818-9364-39c4a19385c7 | c4de8968-a715-4abf-86f4-0952f3f19492 | {"states": ["s0"], "alphabets": "abcde", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}} | Given the following FSM:
a b c d e
s0 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 c a c c a a b d e e c b d ? | s0 | 14 | 1 | 5 | 1_5 |
029c90f2-493f-4c5b-9e28-4e26fea352e3 | c4de8968-a715-4abf-86f4-0952f3f19492 | {"states": ["s0"], "alphabets": "abcde", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}} | Given the following FSM:
a b c d e
s0 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 c a c c a a b d e e c b d c ? | s0 | 15 | 1 | 5 | 1_5 |
1df0416e-b9b0-4300-a58d-5c2f3f29f07b | c4de8968-a715-4abf-86f4-0952f3f19492 | {"states": ["s0"], "alphabets": "abcde", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}} | Given the following FSM:
a b c d e
s0 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 c a c c a a b d e e c b d c e ? | s0 | 16 | 1 | 5 | 1_5 |
a196be1c-2841-4ba5-b9ed-3ac94f7df9ea | c4de8968-a715-4abf-86f4-0952f3f19492 | {"states": ["s0"], "alphabets": "abcde", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}} | Given the following FSM:
a b c d e
s0 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 c a c c a a b d e e c b d c e c ? | s0 | 17 | 1 | 5 | 1_5 |
0dff2540-9b15-485d-a5bf-e0aca0d5f57b | c4de8968-a715-4abf-86f4-0952f3f19492 | {"states": ["s0"], "alphabets": "abcde", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}} | Given the following FSM:
a b c d e
s0 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 c a c c a a b d e e c b d c e c c ? | s0 | 18 | 1 | 5 | 1_5 |
2181699f-a625-4f28-bca4-f4702c1e2ea2 | c4de8968-a715-4abf-86f4-0952f3f19492 | {"states": ["s0"], "alphabets": "abcde", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}} | Given the following FSM:
a b c d e
s0 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 c a c c a a b d e e c b d c e c c e ? | s0 | 19 | 1 | 5 | 1_5 |
70770022-3557-43a3-9c65-6cca2b25569d | c4de8968-a715-4abf-86f4-0952f3f19492 | {"states": ["s0"], "alphabets": "abcde", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}} | Given the following FSM:
a b c d e
s0 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 c a c c a a b d e e c b d c e c c e c ? | s0 | 20 | 1 | 5 | 1_5 |
77146da1-91aa-46d9-b77c-5aa2cf7b31c7 | e010de1f-e703-4794-a74e-a6145bf297a9 | {"states": ["s0"], "alphabets": "abcde", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}} | Given the following FSM:
a b c d e
s0 s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: d ? | s0 | 1 | 1 | 5 | 1_5 |
8f6ebc14-2bc0-43bc-a938-7e012cf6ae4e | e010de1f-e703-4794-a74e-a6145bf297a9 | {"states": ["s0"], "alphabets": "abcde", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}} | Given the following FSM:
a b c d e
s0 s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: d e ? | s0 | 2 | 1 | 5 | 1_5 |
4827213e-c355-4e63-b152-dd30e603fd60 | e010de1f-e703-4794-a74e-a6145bf297a9 | {"states": ["s0"], "alphabets": "abcde", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}} | Given the following FSM:
a b c d e
s0 s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: d e a ? | s0 | 3 | 1 | 5 | 1_5 |
dfb0b273-ccdb-4b4d-9d31-045ff650ee08 | e010de1f-e703-4794-a74e-a6145bf297a9 | {"states": ["s0"], "alphabets": "abcde", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}} | Given the following FSM:
a b c d e
s0 s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: d e a e ? | s0 | 4 | 1 | 5 | 1_5 |
05baf6c3-dcb5-4b5d-9804-0bcf784723f5 | e010de1f-e703-4794-a74e-a6145bf297a9 | {"states": ["s0"], "alphabets": "abcde", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}} | Given the following FSM:
a b c d e
s0 s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: d e a e b ? | s0 | 5 | 1 | 5 | 1_5 |
328f5c04-d7c8-416a-8b89-a0bfe027b278 | e010de1f-e703-4794-a74e-a6145bf297a9 | {"states": ["s0"], "alphabets": "abcde", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}} | Given the following FSM:
a b c d e
s0 s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: d e a e b b ? | s0 | 6 | 1 | 5 | 1_5 |
83da05d7-c404-47fc-966c-e3d808c5e219 | e010de1f-e703-4794-a74e-a6145bf297a9 | {"states": ["s0"], "alphabets": "abcde", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}} | Given the following FSM:
a b c d e
s0 s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: d e a e b b c ? | s0 | 7 | 1 | 5 | 1_5 |
f2e4df23-d9b7-439e-b64f-5196ca0f328d | e010de1f-e703-4794-a74e-a6145bf297a9 | {"states": ["s0"], "alphabets": "abcde", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}} | Given the following FSM:
a b c d e
s0 s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: d e a e b b c c ? | s0 | 8 | 1 | 5 | 1_5 |
cf9daa51-1d9f-4aa0-8948-d48a7e1f37f5 | e010de1f-e703-4794-a74e-a6145bf297a9 | {"states": ["s0"], "alphabets": "abcde", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}} | Given the following FSM:
a b c d e
s0 s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: d e a e b b c c b ? | s0 | 9 | 1 | 5 | 1_5 |
bf69b699-21d6-4ccb-a1fe-f22cd04bdc31 | e010de1f-e703-4794-a74e-a6145bf297a9 | {"states": ["s0"], "alphabets": "abcde", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}} | Given the following FSM:
a b c d e
s0 s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: d e a e b b c c b c ? | s0 | 10 | 1 | 5 | 1_5 |
06832bc9-264e-4390-86f3-4c5c2386fcc8 | e010de1f-e703-4794-a74e-a6145bf297a9 | {"states": ["s0"], "alphabets": "abcde", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}} | Given the following FSM:
a b c d e
s0 s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: d e a e b b c c b c b ? | s0 | 11 | 1 | 5 | 1_5 |
ca698196-5757-454a-8240-d1506f263206 | e010de1f-e703-4794-a74e-a6145bf297a9 | {"states": ["s0"], "alphabets": "abcde", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}} | Given the following FSM:
a b c d e
s0 s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: d e a e b b c c b c b c ? | s0 | 12 | 1 | 5 | 1_5 |
bac74302-1e31-48a2-be32-7d94fe0fb217 | e010de1f-e703-4794-a74e-a6145bf297a9 | {"states": ["s0"], "alphabets": "abcde", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}} | Given the following FSM:
a b c d e
s0 s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: d e a e b b c c b c b c a ? | s0 | 13 | 1 | 5 | 1_5 |
8bce3852-7f69-4f10-b8b5-c70804b20f57 | e010de1f-e703-4794-a74e-a6145bf297a9 | {"states": ["s0"], "alphabets": "abcde", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}} | Given the following FSM:
a b c d e
s0 s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: d e a e b b c c b c b c a c ? | s0 | 14 | 1 | 5 | 1_5 |
cd4facd5-f371-49c1-a016-5b0e58c93d55 | e010de1f-e703-4794-a74e-a6145bf297a9 | {"states": ["s0"], "alphabets": "abcde", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}} | Given the following FSM:
a b c d e
s0 s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: d e a e b b c c b c b c a c d ? | s0 | 15 | 1 | 5 | 1_5 |
d87ca062-822d-4567-99df-ffb8044a7b96 | e010de1f-e703-4794-a74e-a6145bf297a9 | {"states": ["s0"], "alphabets": "abcde", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}} | Given the following FSM:
a b c d e
s0 s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: d e a e b b c c b c b c a c d a ? | s0 | 16 | 1 | 5 | 1_5 |
9e1b9244-b491-428d-a85e-dbd180a64324 | e010de1f-e703-4794-a74e-a6145bf297a9 | {"states": ["s0"], "alphabets": "abcde", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}} | Given the following FSM:
a b c d e
s0 s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: d e a e b b c c b c b c a c d a b ? | s0 | 17 | 1 | 5 | 1_5 |
86907071-1c11-4fb8-a84c-0920da8ec193 | e010de1f-e703-4794-a74e-a6145bf297a9 | {"states": ["s0"], "alphabets": "abcde", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}} | Given the following FSM:
a b c d e
s0 s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: d e a e b b c c b c b c a c d a b c ? | s0 | 18 | 1 | 5 | 1_5 |
64b357f1-7a6a-4a17-9b2c-59e5713533ea | e010de1f-e703-4794-a74e-a6145bf297a9 | {"states": ["s0"], "alphabets": "abcde", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}} | Given the following FSM:
a b c d e
s0 s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: d e a e b b c c b c b c a c d a b c b ? | s0 | 19 | 1 | 5 | 1_5 |
c8323d95-8aa2-4e49-b872-81a82ca96fba | e010de1f-e703-4794-a74e-a6145bf297a9 | {"states": ["s0"], "alphabets": "abcde", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"}} | Given the following FSM:
a b c d e
s0 s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: d e a e b b c c b c b c a c d a b c b b ? | s0 | 20 | 1 | 5 | 1_5 |
d5a6aef5-be71-49d7-81d0-e873724c64e5 | 9e502e36-fe22-4af0-b213-c7d65423fd86 | {"states": ["s0"], "alphabets": "abcdef", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"},"f":{"s0":"s0"}} | Given the following FSM:
a b c d e f
s0 s0 s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: f ? | s0 | 1 | 1 | 6 | 1_6 |
8ee0023c-daa5-463c-8067-09fb4985caa4 | 9e502e36-fe22-4af0-b213-c7d65423fd86 | {"states": ["s0"], "alphabets": "abcdef", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"},"f":{"s0":"s0"}} | Given the following FSM:
a b c d e f
s0 s0 s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: f f ? | s0 | 2 | 1 | 6 | 1_6 |
2e4c595c-47e4-47d9-a4bf-cb9cd3837256 | 9e502e36-fe22-4af0-b213-c7d65423fd86 | {"states": ["s0"], "alphabets": "abcdef", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"},"f":{"s0":"s0"}} | Given the following FSM:
a b c d e f
s0 s0 s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: f f e ? | s0 | 3 | 1 | 6 | 1_6 |
adbe7c06-b9b9-412d-80cc-bc016c872f5a | 9e502e36-fe22-4af0-b213-c7d65423fd86 | {"states": ["s0"], "alphabets": "abcdef", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"},"f":{"s0":"s0"}} | Given the following FSM:
a b c d e f
s0 s0 s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: f f e e ? | s0 | 4 | 1 | 6 | 1_6 |
1a712802-679f-42ed-a037-3998048d532f | 9e502e36-fe22-4af0-b213-c7d65423fd86 | {"states": ["s0"], "alphabets": "abcdef", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"},"f":{"s0":"s0"}} | Given the following FSM:
a b c d e f
s0 s0 s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: f f e e d ? | s0 | 5 | 1 | 6 | 1_6 |
85632e47-74d0-4a4f-b952-3b6de61be1a6 | 9e502e36-fe22-4af0-b213-c7d65423fd86 | {"states": ["s0"], "alphabets": "abcdef", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"},"f":{"s0":"s0"}} | Given the following FSM:
a b c d e f
s0 s0 s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: f f e e d a ? | s0 | 6 | 1 | 6 | 1_6 |
b97fc82a-8f9c-496a-a0e6-f2f63b514ad5 | 9e502e36-fe22-4af0-b213-c7d65423fd86 | {"states": ["s0"], "alphabets": "abcdef", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"},"f":{"s0":"s0"}} | Given the following FSM:
a b c d e f
s0 s0 s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: f f e e d a a ? | s0 | 7 | 1 | 6 | 1_6 |
b56aa4ca-4df4-42d1-8a41-d94031c36618 | 9e502e36-fe22-4af0-b213-c7d65423fd86 | {"states": ["s0"], "alphabets": "abcdef", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"},"f":{"s0":"s0"}} | Given the following FSM:
a b c d e f
s0 s0 s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: f f e e d a a e ? | s0 | 8 | 1 | 6 | 1_6 |
f45a5f90-d879-45a0-b7a3-4988fa325533 | 9e502e36-fe22-4af0-b213-c7d65423fd86 | {"states": ["s0"], "alphabets": "abcdef", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"},"f":{"s0":"s0"}} | Given the following FSM:
a b c d e f
s0 s0 s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: f f e e d a a e d ? | s0 | 9 | 1 | 6 | 1_6 |
e3fdc3dc-1ef2-4d57-8523-e65a8ac3576e | 9e502e36-fe22-4af0-b213-c7d65423fd86 | {"states": ["s0"], "alphabets": "abcdef", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"},"f":{"s0":"s0"}} | Given the following FSM:
a b c d e f
s0 s0 s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: f f e e d a a e d b ? | s0 | 10 | 1 | 6 | 1_6 |
dcde82cc-9c0d-43a9-962b-2332a351ae00 | 9e502e36-fe22-4af0-b213-c7d65423fd86 | {"states": ["s0"], "alphabets": "abcdef", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"},"f":{"s0":"s0"}} | Given the following FSM:
a b c d e f
s0 s0 s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: f f e e d a a e d b d ? | s0 | 11 | 1 | 6 | 1_6 |
0dcc51d7-7373-4628-9611-d95b19e865ab | 9e502e36-fe22-4af0-b213-c7d65423fd86 | {"states": ["s0"], "alphabets": "abcdef", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"},"f":{"s0":"s0"}} | Given the following FSM:
a b c d e f
s0 s0 s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: f f e e d a a e d b d d ? | s0 | 12 | 1 | 6 | 1_6 |
9729c0ce-f4aa-4806-9fa7-910e44ae73e8 | 9e502e36-fe22-4af0-b213-c7d65423fd86 | {"states": ["s0"], "alphabets": "abcdef", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"},"f":{"s0":"s0"}} | Given the following FSM:
a b c d e f
s0 s0 s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: f f e e d a a e d b d d a ? | s0 | 13 | 1 | 6 | 1_6 |
b0aed363-1532-44cc-897b-cf148b02de1d | 9e502e36-fe22-4af0-b213-c7d65423fd86 | {"states": ["s0"], "alphabets": "abcdef", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"},"f":{"s0":"s0"}} | Given the following FSM:
a b c d e f
s0 s0 s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: f f e e d a a e d b d d a b ? | s0 | 14 | 1 | 6 | 1_6 |
e155c013-a026-4c58-baf7-9a445d24900a | 9e502e36-fe22-4af0-b213-c7d65423fd86 | {"states": ["s0"], "alphabets": "abcdef", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"},"f":{"s0":"s0"}} | Given the following FSM:
a b c d e f
s0 s0 s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: f f e e d a a e d b d d a b f ? | s0 | 15 | 1 | 6 | 1_6 |
7fe73fd4-2508-45f4-b723-426e6ae3fa41 | 9e502e36-fe22-4af0-b213-c7d65423fd86 | {"states": ["s0"], "alphabets": "abcdef", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"},"f":{"s0":"s0"}} | Given the following FSM:
a b c d e f
s0 s0 s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: f f e e d a a e d b d d a b f c ? | s0 | 16 | 1 | 6 | 1_6 |
bc0dfe77-52d0-462a-bbef-b7eaff53b0ad | 9e502e36-fe22-4af0-b213-c7d65423fd86 | {"states": ["s0"], "alphabets": "abcdef", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"},"f":{"s0":"s0"}} | Given the following FSM:
a b c d e f
s0 s0 s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: f f e e d a a e d b d d a b f c d ? | s0 | 17 | 1 | 6 | 1_6 |
d0eb7456-c2ea-48a3-a7d6-b78e771a7e92 | 9e502e36-fe22-4af0-b213-c7d65423fd86 | {"states": ["s0"], "alphabets": "abcdef", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"},"f":{"s0":"s0"}} | Given the following FSM:
a b c d e f
s0 s0 s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: f f e e d a a e d b d d a b f c d f ? | s0 | 18 | 1 | 6 | 1_6 |
f5a607e5-6eb5-4263-96f6-8efaa2dc0df3 | 9e502e36-fe22-4af0-b213-c7d65423fd86 | {"states": ["s0"], "alphabets": "abcdef", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"},"f":{"s0":"s0"}} | Given the following FSM:
a b c d e f
s0 s0 s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: f f e e d a a e d b d d a b f c d f f ? | s0 | 19 | 1 | 6 | 1_6 |
133e525b-62c1-4893-9879-d9746724424d | 9e502e36-fe22-4af0-b213-c7d65423fd86 | {"states": ["s0"], "alphabets": "abcdef", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"},"f":{"s0":"s0"}} | Given the following FSM:
a b c d e f
s0 s0 s0 s0 s0 s0 s0
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: f f e e d a a e d b d d a b f c d f f f ? | s0 | 20 | 1 | 6 | 1_6 |
d64c3908-b239-449c-bcc0-c443a6122475 | 08aa95b0-3668-4704-adbd-42263bbb32f3 | {"states": ["s0"], "alphabets": "abcdef", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"},"f":{"s0":"s0"}} | Given the following FSM:
a b c d e f
s0 s0 s0 s0 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 | 6 | 1_6 |
8a65184e-43ad-4411-b390-24f6759d42d5 | 08aa95b0-3668-4704-adbd-42263bbb32f3 | {"states": ["s0"], "alphabets": "abcdef", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"},"f":{"s0":"s0"}} | Given the following FSM:
a b c d e f
s0 s0 s0 s0 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 | 6 | 1_6 |
6016e1e8-c083-400d-97bf-a134edf4bc28 | 08aa95b0-3668-4704-adbd-42263bbb32f3 | {"states": ["s0"], "alphabets": "abcdef", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"},"f":{"s0":"s0"}} | Given the following FSM:
a b c d e f
s0 s0 s0 s0 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 | 6 | 1_6 |
2f7d2add-678f-406c-baba-67f0f565e347 | 08aa95b0-3668-4704-adbd-42263bbb32f3 | {"states": ["s0"], "alphabets": "abcdef", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"},"f":{"s0":"s0"}} | Given the following FSM:
a b c d e f
s0 s0 s0 s0 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 c ? | s0 | 4 | 1 | 6 | 1_6 |
8e93f5a2-d91b-4adc-acff-d2ff2ee6bf77 | 08aa95b0-3668-4704-adbd-42263bbb32f3 | {"states": ["s0"], "alphabets": "abcdef", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"},"f":{"s0":"s0"}} | Given the following FSM:
a b c d e f
s0 s0 s0 s0 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 c f ? | s0 | 5 | 1 | 6 | 1_6 |
6b1c699c-4a6c-4864-87da-b9609d4a154c | 08aa95b0-3668-4704-adbd-42263bbb32f3 | {"states": ["s0"], "alphabets": "abcdef", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"},"f":{"s0":"s0"}} | Given the following FSM:
a b c d e f
s0 s0 s0 s0 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 c f c ? | s0 | 6 | 1 | 6 | 1_6 |
ffb8053e-3a5c-4d89-aa56-240ee2375d51 | 08aa95b0-3668-4704-adbd-42263bbb32f3 | {"states": ["s0"], "alphabets": "abcdef", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"},"f":{"s0":"s0"}} | Given the following FSM:
a b c d e f
s0 s0 s0 s0 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 c f c d ? | s0 | 7 | 1 | 6 | 1_6 |
674a7598-38fb-4b77-bef2-9fed35f6855d | 08aa95b0-3668-4704-adbd-42263bbb32f3 | {"states": ["s0"], "alphabets": "abcdef", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"},"f":{"s0":"s0"}} | Given the following FSM:
a b c d e f
s0 s0 s0 s0 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 c f c d c ? | s0 | 8 | 1 | 6 | 1_6 |
f86a7d87-4b83-4547-8b7f-069d9ffd446f | 08aa95b0-3668-4704-adbd-42263bbb32f3 | {"states": ["s0"], "alphabets": "abcdef", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"},"f":{"s0":"s0"}} | Given the following FSM:
a b c d e f
s0 s0 s0 s0 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 c f c d c f ? | s0 | 9 | 1 | 6 | 1_6 |
4041dfa9-89ca-46ca-b223-f971403e2ab0 | 08aa95b0-3668-4704-adbd-42263bbb32f3 | {"states": ["s0"], "alphabets": "abcdef", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"},"f":{"s0":"s0"}} | Given the following FSM:
a b c d e f
s0 s0 s0 s0 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 c f c d c f b ? | s0 | 10 | 1 | 6 | 1_6 |
de0f0132-495f-400f-a9f2-ddc6548ea19c | 08aa95b0-3668-4704-adbd-42263bbb32f3 | {"states": ["s0"], "alphabets": "abcdef", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"},"f":{"s0":"s0"}} | Given the following FSM:
a b c d e f
s0 s0 s0 s0 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 c f c d c f b d ? | s0 | 11 | 1 | 6 | 1_6 |
159e506a-d0d8-410b-a874-807508447d9e | 08aa95b0-3668-4704-adbd-42263bbb32f3 | {"states": ["s0"], "alphabets": "abcdef", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"},"f":{"s0":"s0"}} | Given the following FSM:
a b c d e f
s0 s0 s0 s0 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 c f c d c f b d c ? | s0 | 12 | 1 | 6 | 1_6 |
a38b2f14-94d1-45a7-922b-5b07fc288592 | 08aa95b0-3668-4704-adbd-42263bbb32f3 | {"states": ["s0"], "alphabets": "abcdef", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"},"f":{"s0":"s0"}} | Given the following FSM:
a b c d e f
s0 s0 s0 s0 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 c f c d c f b d c c ? | s0 | 13 | 1 | 6 | 1_6 |
eafa825d-5bd0-4226-b677-97b8c0249347 | 08aa95b0-3668-4704-adbd-42263bbb32f3 | {"states": ["s0"], "alphabets": "abcdef", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"},"f":{"s0":"s0"}} | Given the following FSM:
a b c d e f
s0 s0 s0 s0 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 c f c d c f b d c c a ? | s0 | 14 | 1 | 6 | 1_6 |
294a12b8-fabc-4fa1-b4dd-da53b983c3aa | 08aa95b0-3668-4704-adbd-42263bbb32f3 | {"states": ["s0"], "alphabets": "abcdef", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"},"f":{"s0":"s0"}} | Given the following FSM:
a b c d e f
s0 s0 s0 s0 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 c f c d c f b d c c a a ? | s0 | 15 | 1 | 6 | 1_6 |
1a8a009f-7c04-4fdf-a681-68899df7f6c1 | 08aa95b0-3668-4704-adbd-42263bbb32f3 | {"states": ["s0"], "alphabets": "abcdef", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"},"f":{"s0":"s0"}} | Given the following FSM:
a b c d e f
s0 s0 s0 s0 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 c f c d c f b d c c a a c ? | s0 | 16 | 1 | 6 | 1_6 |
65c6e682-0d82-4266-ab8a-92d0447adbc2 | 08aa95b0-3668-4704-adbd-42263bbb32f3 | {"states": ["s0"], "alphabets": "abcdef", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"},"f":{"s0":"s0"}} | Given the following FSM:
a b c d e f
s0 s0 s0 s0 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 c f c d c f b d c c a a c e ? | s0 | 17 | 1 | 6 | 1_6 |
6f70b40e-b282-43b2-84e3-10d1ecdbc150 | 08aa95b0-3668-4704-adbd-42263bbb32f3 | {"states": ["s0"], "alphabets": "abcdef", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"},"f":{"s0":"s0"}} | Given the following FSM:
a b c d e f
s0 s0 s0 s0 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 c f c d c f b d c c a a c e e ? | s0 | 18 | 1 | 6 | 1_6 |
c5d2a72e-3de7-4089-8c3d-e6d93ef50018 | 08aa95b0-3668-4704-adbd-42263bbb32f3 | {"states": ["s0"], "alphabets": "abcdef", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"},"f":{"s0":"s0"}} | Given the following FSM:
a b c d e f
s0 s0 s0 s0 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 c f c d c f b d c c a a c e e e ? | s0 | 19 | 1 | 6 | 1_6 |
199c43fa-9b84-4007-8f6b-32a3ebce846e | 08aa95b0-3668-4704-adbd-42263bbb32f3 | {"states": ["s0"], "alphabets": "abcdef", "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"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s0"},"b":{"s0":"s0"},"c":{"s0":"s0"},"d":{"s0":"s0"},"e":{"s0":"s0"},"f":{"s0":"s0"}} | Given the following FSM:
a b c d e f
s0 s0 s0 s0 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 c f c d c f b d c c a a c e e e f ? | s0 | 20 | 1 | 6 | 1_6 |
480a2929-9fea-4486-926c-50bd63d7ace4 | d1e85e98-3d04-407b-b6a8-a76cea0ee170 | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]} | 1 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s1","s1":"s1"}} | Given the following FSM:
a b
s0 s0 s1
s1 s1 s1
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: b ? | s1 | 1 | 2 | 2 | 2_2 |
a6280d20-864b-478e-8eaa-1ea9c898ff73 | d1e85e98-3d04-407b-b6a8-a76cea0ee170 | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]} | 1 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s1","s1":"s1"}} | Given the following FSM:
a b
s0 s0 s1
s1 s1 s1
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: b a ? | s1 | 2 | 2 | 2 | 2_2 |
9ac64c8a-65db-4010-b933-a0cb6fcc1858 | d1e85e98-3d04-407b-b6a8-a76cea0ee170 | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]} | 1 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s1","s1":"s1"}} | Given the following FSM:
a b
s0 s0 s1
s1 s1 s1
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: b a a ? | s1 | 3 | 2 | 2 | 2_2 |
b10b01bd-9230-49cf-bbcb-d8df73ede921 | d1e85e98-3d04-407b-b6a8-a76cea0ee170 | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]} | 1 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s1","s1":"s1"}} | Given the following FSM:
a b
s0 s0 s1
s1 s1 s1
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: b a a a ? | s1 | 4 | 2 | 2 | 2_2 |
f445cf64-81db-471f-ab18-6fa892c34317 | d1e85e98-3d04-407b-b6a8-a76cea0ee170 | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]} | 1 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s1","s1":"s1"}} | Given the following FSM:
a b
s0 s0 s1
s1 s1 s1
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: b a a a b ? | s1 | 5 | 2 | 2 | 2_2 |
ad7ee3b0-36fd-4be9-83eb-4dd1f46e5a09 | d1e85e98-3d04-407b-b6a8-a76cea0ee170 | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]} | 1 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s1","s1":"s1"}} | Given the following FSM:
a b
s0 s0 s1
s1 s1 s1
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: b a a a b b ? | s1 | 6 | 2 | 2 | 2_2 |
49126829-fd83-49f1-a4c4-9b8caf8d5aab | d1e85e98-3d04-407b-b6a8-a76cea0ee170 | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]} | 1 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s1","s1":"s1"}} | Given the following FSM:
a b
s0 s0 s1
s1 s1 s1
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: b a a a b b a ? | s1 | 7 | 2 | 2 | 2_2 |
5083d34a-54b0-4881-a8af-9444b2273dbd | d1e85e98-3d04-407b-b6a8-a76cea0ee170 | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]} | 1 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s1","s1":"s1"}} | Given the following FSM:
a b
s0 s0 s1
s1 s1 s1
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: b a a a b b a b ? | s1 | 8 | 2 | 2 | 2_2 |
e31fc138-77c3-4964-baad-d7efdd05a140 | d1e85e98-3d04-407b-b6a8-a76cea0ee170 | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]} | 1 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s1","s1":"s1"}} | Given the following FSM:
a b
s0 s0 s1
s1 s1 s1
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: b a a a b b a b b ? | s1 | 9 | 2 | 2 | 2_2 |
b5e9db93-5d62-4fa6-9fe8-613ec9594f59 | d1e85e98-3d04-407b-b6a8-a76cea0ee170 | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]} | 1 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s1","s1":"s1"}} | Given the following FSM:
a b
s0 s0 s1
s1 s1 s1
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: b a a a b b a b b b ? | s1 | 10 | 2 | 2 | 2_2 |
7a6c7cd8-cb4b-468c-a2ca-c7565eacf145 | d1e85e98-3d04-407b-b6a8-a76cea0ee170 | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]} | 1 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s1","s1":"s1"}} | Given the following FSM:
a b
s0 s0 s1
s1 s1 s1
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: b a a a b b a b b b a ? | s1 | 11 | 2 | 2 | 2_2 |
163cd637-a470-4819-a84b-a6492c96b002 | d1e85e98-3d04-407b-b6a8-a76cea0ee170 | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]} | 1 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s1","s1":"s1"}} | Given the following FSM:
a b
s0 s0 s1
s1 s1 s1
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: b a a a b b a b b b a b ? | s1 | 12 | 2 | 2 | 2_2 |
8deef6ce-4782-490c-8c8a-64cfe04b1965 | d1e85e98-3d04-407b-b6a8-a76cea0ee170 | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]} | 1 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s1","s1":"s1"}} | Given the following FSM:
a b
s0 s0 s1
s1 s1 s1
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: b a a a b b a b b b a b a ? | s1 | 13 | 2 | 2 | 2_2 |
0831f871-eacf-4767-bd0a-2a1912a47062 | d1e85e98-3d04-407b-b6a8-a76cea0ee170 | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]} | 1 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s1","s1":"s1"}} | Given the following FSM:
a b
s0 s0 s1
s1 s1 s1
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: b a a a b b a b b b a b a b ? | s1 | 14 | 2 | 2 | 2_2 |
e5219a90-5c17-4a84-82ea-85753904bbb0 | d1e85e98-3d04-407b-b6a8-a76cea0ee170 | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]} | 1 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s1","s1":"s1"}} | Given the following FSM:
a b
s0 s0 s1
s1 s1 s1
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: b a a a b b a b b b a b a b b ? | s1 | 15 | 2 | 2 | 2_2 |
a2a28866-b2d1-40f8-9cfb-f7c7a1247aaa | d1e85e98-3d04-407b-b6a8-a76cea0ee170 | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]} | 1 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s1","s1":"s1"}} | Given the following FSM:
a b
s0 s0 s1
s1 s1 s1
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: b a a a b b a b b b a b a b b b ? | s1 | 16 | 2 | 2 | 2_2 |
83096293-fc1a-4e80-8f76-75ced95a1386 | d1e85e98-3d04-407b-b6a8-a76cea0ee170 | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]} | 1 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s1","s1":"s1"}} | Given the following FSM:
a b
s0 s0 s1
s1 s1 s1
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: b a a a b b a b b b a b a b b b a ? | s1 | 17 | 2 | 2 | 2_2 |
41c87a89-aac2-4f82-a7ad-bdafb34e543c | d1e85e98-3d04-407b-b6a8-a76cea0ee170 | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]} | 1 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s1","s1":"s1"}} | Given the following FSM:
a b
s0 s0 s1
s1 s1 s1
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: b a a a b b a b b b a b a b b b a b ? | s1 | 18 | 2 | 2 | 2_2 |
e8ca159a-75f7-4cea-a091-257db2ed26bf | d1e85e98-3d04-407b-b6a8-a76cea0ee170 | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]} | 1 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s1","s1":"s1"}} | Given the following FSM:
a b
s0 s0 s1
s1 s1 s1
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: b a a a b b a b b b a b a b b b a b a ? | s1 | 19 | 2 | 2 | 2_2 |
cd0362a6-5e44-4b5a-ab0d-6a6230e98c69 | d1e85e98-3d04-407b-b6a8-a76cea0ee170 | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]} | 1 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s1","s1":"s1"}} | Given the following FSM:
a b
s0 s0 s1
s1 s1 s1
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: b a a a b b a b b b a b a b b b a b a b ? | s1 | 20 | 2 | 2 | 2_2 |