query_id
stringlengths 36
36
| fsm_id
stringclasses 96
values | fsm_json
stringclasses 96
values | difficulty_level
int64 1
4
| transition_matrix
stringclasses 93
values | query
stringlengths 194
452
| answer
stringclasses 13
values | substring_index
int64 1
9
| number_of_states
int64 2
4
| number_of_alphabets
int64 1
4
| state_alpha_combo
stringclasses 12
values | transition_matrix_triplets
stringclasses 93
values |
---|---|---|---|---|---|---|---|---|---|---|---|
683c71c7-c835-44bf-8e11-7c8271172c33 | 01049a90-0145-4596-b26e-c2337193c32e | {"states": ["s0", "s3"], "alphabets": "a", "accepting_states": ["s3"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s3","s3":"s0"}} | Given the following FSM transition rules:
( s0 , a , s3 )
( s3 , a , s0 )
With the initial state: s0, and accepting states: ['s3'],
What will be the state after reading the following input: a | s3 | 1 | 2 | 1 | 2_1 | ( s0 , a , s3 )
( s3 , a , s0 ) |
4d46413e-1907-412c-9286-656d50a44c25 | 01049a90-0145-4596-b26e-c2337193c32e | {"states": ["s0", "s3"], "alphabets": "a", "accepting_states": ["s3"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s3","s3":"s0"}} | Given the following FSM transition rules:
( s0 , a , s3 )
( s3 , a , s0 )
With the initial state: s0, and accepting states: ['s3'],
What will be the state after reading the following input: a a | s0 | 2 | 2 | 1 | 2_1 | ( s0 , a , s3 )
( s3 , a , s0 ) |
9869e25b-fd70-46de-bebd-0b3b09adb4df | 01049a90-0145-4596-b26e-c2337193c32e | {"states": ["s0", "s3"], "alphabets": "a", "accepting_states": ["s3"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s3","s3":"s0"}} | Given the following FSM transition rules:
( s0 , a , s3 )
( s3 , a , s0 )
With the initial state: s0, and accepting states: ['s3'],
What will be the state after reading the following input: a a a | s3 | 3 | 2 | 1 | 2_1 | ( s0 , a , s3 )
( s3 , a , s0 ) |
d79a6908-f934-4c2e-9f91-2b6f797c58d4 | 01049a90-0145-4596-b26e-c2337193c32e | {"states": ["s0", "s3"], "alphabets": "a", "accepting_states": ["s3"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s3","s3":"s0"}} | Given the following FSM transition rules:
( s0 , a , s3 )
( s3 , a , s0 )
With the initial state: s0, and accepting states: ['s3'],
What will be the state after reading the following input: a a a a | s0 | 4 | 2 | 1 | 2_1 | ( s0 , a , s3 )
( s3 , a , s0 ) |
f4a56b3d-3048-469f-8532-80e368c0e0a3 | 01049a90-0145-4596-b26e-c2337193c32e | {"states": ["s0", "s3"], "alphabets": "a", "accepting_states": ["s3"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s3","s3":"s0"}} | Given the following FSM transition rules:
( s0 , a , s3 )
( s3 , a , s0 )
With the initial state: s0, and accepting states: ['s3'],
What will be the state after reading the following input: a a a a a | s3 | 5 | 2 | 1 | 2_1 | ( s0 , a , s3 )
( s3 , a , s0 ) |
71b9afd6-d19f-423a-a862-36dd845be1af | 01049a90-0145-4596-b26e-c2337193c32e | {"states": ["s0", "s3"], "alphabets": "a", "accepting_states": ["s3"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s3","s3":"s0"}} | Given the following FSM transition rules:
( s0 , a , s3 )
( s3 , a , s0 )
With the initial state: s0, and accepting states: ['s3'],
What will be the state after reading the following input: a a a a a a | s0 | 6 | 2 | 1 | 2_1 | ( s0 , a , s3 )
( s3 , a , s0 ) |
95a84fb4-9b9c-4b23-a84e-57dae1f1cb62 | 01049a90-0145-4596-b26e-c2337193c32e | {"states": ["s0", "s3"], "alphabets": "a", "accepting_states": ["s3"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s3","s3":"s0"}} | Given the following FSM transition rules:
( s0 , a , s3 )
( s3 , a , s0 )
With the initial state: s0, and accepting states: ['s3'],
What will be the state after reading the following input: a a a a a a a | s3 | 7 | 2 | 1 | 2_1 | ( s0 , a , s3 )
( s3 , a , s0 ) |
0a2fc12c-7e81-4573-ad1a-03b6bb2037ff | 01049a90-0145-4596-b26e-c2337193c32e | {"states": ["s0", "s3"], "alphabets": "a", "accepting_states": ["s3"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s3","s3":"s0"}} | Given the following FSM transition rules:
( s0 , a , s3 )
( s3 , a , s0 )
With the initial state: s0, and accepting states: ['s3'],
What will be the state after reading the following input: a a a a a a a a | s0 | 8 | 2 | 1 | 2_1 | ( s0 , a , s3 )
( s3 , a , s0 ) |
4ed76f98-454a-4175-ba35-366a361b7d95 | 01049a90-0145-4596-b26e-c2337193c32e | {"states": ["s0", "s3"], "alphabets": "a", "accepting_states": ["s3"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s3","s3":"s0"}} | Given the following FSM transition rules:
( s0 , a , s3 )
( s3 , a , s0 )
With the initial state: s0, and accepting states: ['s3'],
What will be the state after reading the following input: a a a a a a a a a | s3 | 9 | 2 | 1 | 2_1 | ( s0 , a , s3 )
( s3 , a , s0 ) |
c4dc3525-4dbf-4a84-8a6f-64c4a0888758 | 31fd15a2-dd68-4bec-957e-b6f704010dd4 | {"states": ["s0", "s1"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a | s1 | 1 | 2 | 1 | 2_1 | ( s0 , a , s1 )
( s1 , a , s1 ) |
24d33ba5-8372-440d-9192-32f7a7591ddb | 31fd15a2-dd68-4bec-957e-b6f704010dd4 | {"states": ["s0", "s1"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a | s1 | 2 | 2 | 1 | 2_1 | ( s0 , a , s1 )
( s1 , a , s1 ) |
03b24a98-d564-4761-a599-be3640094baa | 31fd15a2-dd68-4bec-957e-b6f704010dd4 | {"states": ["s0", "s1"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a | s1 | 3 | 2 | 1 | 2_1 | ( s0 , a , s1 )
( s1 , a , s1 ) |
0a38b165-3c05-4aba-93d9-7a9232d41a99 | 31fd15a2-dd68-4bec-957e-b6f704010dd4 | {"states": ["s0", "s1"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a | s1 | 4 | 2 | 1 | 2_1 | ( s0 , a , s1 )
( s1 , a , s1 ) |
456b4c63-2485-4f92-9206-2564381a257d | 31fd15a2-dd68-4bec-957e-b6f704010dd4 | {"states": ["s0", "s1"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a | s1 | 5 | 2 | 1 | 2_1 | ( s0 , a , s1 )
( s1 , a , s1 ) |
3095ba37-7137-426b-bfb4-215d5103da11 | 31fd15a2-dd68-4bec-957e-b6f704010dd4 | {"states": ["s0", "s1"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
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 | s1 | 6 | 2 | 1 | 2_1 | ( s0 , a , s1 )
( s1 , a , s1 ) |
f2922f27-bc34-4a23-a8f9-73bfce09c7a1 | 31fd15a2-dd68-4bec-957e-b6f704010dd4 | {"states": ["s0", "s1"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
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 | s1 | 7 | 2 | 1 | 2_1 | ( s0 , a , s1 )
( s1 , a , s1 ) |
ffef22a7-01ba-4369-89d9-cd03f37510ba | 31fd15a2-dd68-4bec-957e-b6f704010dd4 | {"states": ["s0", "s1"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
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 | s1 | 8 | 2 | 1 | 2_1 | ( s0 , a , s1 )
( s1 , a , s1 ) |
2370761d-7c0f-4ac6-88b0-dfeed3cd2c78 | 31fd15a2-dd68-4bec-957e-b6f704010dd4 | {"states": ["s0", "s1"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
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 | s1 | 9 | 2 | 1 | 2_1 | ( s0 , a , s1 )
( s1 , a , s1 ) |
da7ce412-9bb2-4e2b-b960-9f88e6e93c7b | ad99c0a8-0e01-4554-99ea-5150c51b0ab3 | {"states": ["s0", "s5"], "alphabets": "a", "accepting_states": ["s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s5","s5":"s0"}} | Given the following FSM transition rules:
( s0 , a , s5 )
( s5 , a , s0 )
With the initial state: s0, and accepting states: ['s5'],
What will be the state after reading the following input: a | s5 | 1 | 2 | 1 | 2_1 | ( s0 , a , s5 )
( s5 , a , s0 ) |
9a873e20-937b-43d6-9f9e-9edcc0a4088d | ad99c0a8-0e01-4554-99ea-5150c51b0ab3 | {"states": ["s0", "s5"], "alphabets": "a", "accepting_states": ["s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s5","s5":"s0"}} | Given the following FSM transition rules:
( s0 , a , s5 )
( s5 , a , s0 )
With the initial state: s0, and accepting states: ['s5'],
What will be the state after reading the following input: a a | s0 | 2 | 2 | 1 | 2_1 | ( s0 , a , s5 )
( s5 , a , s0 ) |
3cd73098-052e-4f01-85ae-ae8b4b352aed | ad99c0a8-0e01-4554-99ea-5150c51b0ab3 | {"states": ["s0", "s5"], "alphabets": "a", "accepting_states": ["s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s5","s5":"s0"}} | Given the following FSM transition rules:
( s0 , a , s5 )
( s5 , a , s0 )
With the initial state: s0, and accepting states: ['s5'],
What will be the state after reading the following input: a a a | s5 | 3 | 2 | 1 | 2_1 | ( s0 , a , s5 )
( s5 , a , s0 ) |
58fe2680-4604-4858-a8e3-22768cacac19 | ad99c0a8-0e01-4554-99ea-5150c51b0ab3 | {"states": ["s0", "s5"], "alphabets": "a", "accepting_states": ["s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s5","s5":"s0"}} | Given the following FSM transition rules:
( s0 , a , s5 )
( s5 , a , s0 )
With the initial state: s0, and accepting states: ['s5'],
What will be the state after reading the following input: a a a a | s0 | 4 | 2 | 1 | 2_1 | ( s0 , a , s5 )
( s5 , a , s0 ) |
195fea81-64dd-4556-a710-65f14d263fb4 | ad99c0a8-0e01-4554-99ea-5150c51b0ab3 | {"states": ["s0", "s5"], "alphabets": "a", "accepting_states": ["s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s5","s5":"s0"}} | Given the following FSM transition rules:
( s0 , a , s5 )
( s5 , a , s0 )
With the initial state: s0, and accepting states: ['s5'],
What will be the state after reading the following input: a a a a a | s5 | 5 | 2 | 1 | 2_1 | ( s0 , a , s5 )
( s5 , a , s0 ) |
65c9d9cf-f23a-410b-8863-39790fd115b8 | ad99c0a8-0e01-4554-99ea-5150c51b0ab3 | {"states": ["s0", "s5"], "alphabets": "a", "accepting_states": ["s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s5","s5":"s0"}} | Given the following FSM transition rules:
( s0 , a , s5 )
( s5 , a , s0 )
With the initial state: s0, and accepting states: ['s5'],
What will be the state after reading the following input: a a a a a a | s0 | 6 | 2 | 1 | 2_1 | ( s0 , a , s5 )
( s5 , a , s0 ) |
d0cf472f-7ce4-4b21-970a-0b50048c73e1 | ad99c0a8-0e01-4554-99ea-5150c51b0ab3 | {"states": ["s0", "s5"], "alphabets": "a", "accepting_states": ["s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s5","s5":"s0"}} | Given the following FSM transition rules:
( s0 , a , s5 )
( s5 , a , s0 )
With the initial state: s0, and accepting states: ['s5'],
What will be the state after reading the following input: a a a a a a a | s5 | 7 | 2 | 1 | 2_1 | ( s0 , a , s5 )
( s5 , a , s0 ) |
b9e4ada0-bef7-4e12-add6-a146610613ca | ad99c0a8-0e01-4554-99ea-5150c51b0ab3 | {"states": ["s0", "s5"], "alphabets": "a", "accepting_states": ["s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s5","s5":"s0"}} | Given the following FSM transition rules:
( s0 , a , s5 )
( s5 , a , s0 )
With the initial state: s0, and accepting states: ['s5'],
What will be the state after reading the following input: a a a a a a a a | s0 | 8 | 2 | 1 | 2_1 | ( s0 , a , s5 )
( s5 , a , s0 ) |
1090e9ae-6268-44de-bb1a-0fbd1cd79371 | ad99c0a8-0e01-4554-99ea-5150c51b0ab3 | {"states": ["s0", "s5"], "alphabets": "a", "accepting_states": ["s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s5","s5":"s0"}} | Given the following FSM transition rules:
( s0 , a , s5 )
( s5 , a , s0 )
With the initial state: s0, and accepting states: ['s5'],
What will be the state after reading the following input: a a a a a a a a a | s5 | 9 | 2 | 1 | 2_1 | ( s0 , a , s5 )
( s5 , a , s0 ) |
304eff61-4a3c-4fa4-bb31-e8b67ed4a2f3 | af498078-ba6d-4761-8c65-54b92f54d5f8 | {"states": ["s0", "s9"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s9"]}, {"fromState": "s9", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s9","s9":"s0"}} | Given the following FSM transition rules:
( s0 , a , s9 )
( s9 , a , s0 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a | s9 | 1 | 2 | 1 | 2_1 | ( s0 , a , s9 )
( s9 , a , s0 ) |
798478dc-3302-4541-aaa1-8a462e9dff70 | af498078-ba6d-4761-8c65-54b92f54d5f8 | {"states": ["s0", "s9"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s9"]}, {"fromState": "s9", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s9","s9":"s0"}} | Given the following FSM transition rules:
( s0 , a , s9 )
( s9 , a , s0 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a | s0 | 2 | 2 | 1 | 2_1 | ( s0 , a , s9 )
( s9 , a , s0 ) |
7ff2d8ed-d45f-4aee-98a2-ecb711eb3262 | af498078-ba6d-4761-8c65-54b92f54d5f8 | {"states": ["s0", "s9"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s9"]}, {"fromState": "s9", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s9","s9":"s0"}} | Given the following FSM transition rules:
( s0 , a , s9 )
( s9 , a , s0 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a | s9 | 3 | 2 | 1 | 2_1 | ( s0 , a , s9 )
( s9 , a , s0 ) |
ef457b32-82c8-4f61-8e66-31979d8d0b3b | af498078-ba6d-4761-8c65-54b92f54d5f8 | {"states": ["s0", "s9"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s9"]}, {"fromState": "s9", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s9","s9":"s0"}} | Given the following FSM transition rules:
( s0 , a , s9 )
( s9 , a , 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 | 2 | 1 | 2_1 | ( s0 , a , s9 )
( s9 , a , s0 ) |
3849e77b-97c2-4ff8-8a44-53f35c831fc0 | af498078-ba6d-4761-8c65-54b92f54d5f8 | {"states": ["s0", "s9"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s9"]}, {"fromState": "s9", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s9","s9":"s0"}} | Given the following FSM transition rules:
( s0 , a , s9 )
( s9 , a , 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 | s9 | 5 | 2 | 1 | 2_1 | ( s0 , a , s9 )
( s9 , a , s0 ) |
d3e8bc4e-8db2-4f50-9d45-bdec82813693 | af498078-ba6d-4761-8c65-54b92f54d5f8 | {"states": ["s0", "s9"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s9"]}, {"fromState": "s9", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s9","s9":"s0"}} | Given the following FSM transition rules:
( s0 , a , s9 )
( s9 , a , 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 | 2 | 1 | 2_1 | ( s0 , a , s9 )
( s9 , a , s0 ) |
133046e0-f48b-4156-a09f-3a806e352b6b | af498078-ba6d-4761-8c65-54b92f54d5f8 | {"states": ["s0", "s9"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s9"]}, {"fromState": "s9", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s9","s9":"s0"}} | Given the following FSM transition rules:
( s0 , a , s9 )
( s9 , a , 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 | s9 | 7 | 2 | 1 | 2_1 | ( s0 , a , s9 )
( s9 , a , s0 ) |
9a8b2adb-417f-4b8a-9a42-4c05902cbc71 | af498078-ba6d-4761-8c65-54b92f54d5f8 | {"states": ["s0", "s9"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s9"]}, {"fromState": "s9", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s9","s9":"s0"}} | Given the following FSM transition rules:
( s0 , a , s9 )
( s9 , a , 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 | 2 | 1 | 2_1 | ( s0 , a , s9 )
( s9 , a , s0 ) |
385a140f-21be-46e1-9430-8afba0fbbc10 | af498078-ba6d-4761-8c65-54b92f54d5f8 | {"states": ["s0", "s9"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s9"]}, {"fromState": "s9", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s9","s9":"s0"}} | Given the following FSM transition rules:
( s0 , a , s9 )
( s9 , a , 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 | s9 | 9 | 2 | 1 | 2_1 | ( s0 , a , s9 )
( s9 , a , s0 ) |
f3ad54b5-66b8-4577-ae92-945443c48db3 | 672a287e-9b79-49af-8c9a-a24ec5fe010f | {"states": ["s0", "s2"], "alphabets": "a", "accepting_states": ["s2", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}]} | 1 | {"a":{"s0":"s2","s2":"s0"}} | Given the following FSM transition rules:
( s0 , a , s2 )
( s2 , a , s0 )
With the initial state: s0, and accepting states: ['s2', 's0'],
What will be the state after reading the following input: a | s2 | 1 | 2 | 1 | 2_1 | ( s0 , a , s2 )
( s2 , a , s0 ) |
33aef14e-2196-43f8-a145-e9ea5360df5a | 672a287e-9b79-49af-8c9a-a24ec5fe010f | {"states": ["s0", "s2"], "alphabets": "a", "accepting_states": ["s2", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}]} | 1 | {"a":{"s0":"s2","s2":"s0"}} | Given the following FSM transition rules:
( s0 , a , s2 )
( s2 , a , s0 )
With the initial state: s0, and accepting states: ['s2', 's0'],
What will be the state after reading the following input: a a | s0 | 2 | 2 | 1 | 2_1 | ( s0 , a , s2 )
( s2 , a , s0 ) |
04c63971-d916-4b05-ad5a-dc1d89bbba83 | 672a287e-9b79-49af-8c9a-a24ec5fe010f | {"states": ["s0", "s2"], "alphabets": "a", "accepting_states": ["s2", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}]} | 1 | {"a":{"s0":"s2","s2":"s0"}} | Given the following FSM transition rules:
( s0 , a , s2 )
( s2 , a , s0 )
With the initial state: s0, and accepting states: ['s2', 's0'],
What will be the state after reading the following input: a a a | s2 | 3 | 2 | 1 | 2_1 | ( s0 , a , s2 )
( s2 , a , s0 ) |
f1aed4bd-8293-4310-8ec0-ae8aa5303070 | 672a287e-9b79-49af-8c9a-a24ec5fe010f | {"states": ["s0", "s2"], "alphabets": "a", "accepting_states": ["s2", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}]} | 1 | {"a":{"s0":"s2","s2":"s0"}} | Given the following FSM transition rules:
( s0 , a , s2 )
( s2 , a , s0 )
With the initial state: s0, and accepting states: ['s2', 's0'],
What will be the state after reading the following input: a a a a | s0 | 4 | 2 | 1 | 2_1 | ( s0 , a , s2 )
( s2 , a , s0 ) |
cbd22711-cf71-4241-84f0-8f6fbf231118 | 672a287e-9b79-49af-8c9a-a24ec5fe010f | {"states": ["s0", "s2"], "alphabets": "a", "accepting_states": ["s2", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}]} | 1 | {"a":{"s0":"s2","s2":"s0"}} | Given the following FSM transition rules:
( s0 , a , s2 )
( s2 , a , s0 )
With the initial state: s0, and accepting states: ['s2', 's0'],
What will be the state after reading the following input: a a a a a | s2 | 5 | 2 | 1 | 2_1 | ( s0 , a , s2 )
( s2 , a , s0 ) |
4d989af9-aef1-4bc0-a28a-9e8f9d9edecd | 672a287e-9b79-49af-8c9a-a24ec5fe010f | {"states": ["s0", "s2"], "alphabets": "a", "accepting_states": ["s2", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}]} | 1 | {"a":{"s0":"s2","s2":"s0"}} | Given the following FSM transition rules:
( s0 , a , s2 )
( s2 , a , s0 )
With the initial state: s0, and accepting states: ['s2', 's0'],
What will be the state after reading the following input: a a a a a a | s0 | 6 | 2 | 1 | 2_1 | ( s0 , a , s2 )
( s2 , a , s0 ) |
f0c3f2b9-a6bb-4c26-9bcc-449b1755eb40 | 672a287e-9b79-49af-8c9a-a24ec5fe010f | {"states": ["s0", "s2"], "alphabets": "a", "accepting_states": ["s2", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}]} | 1 | {"a":{"s0":"s2","s2":"s0"}} | Given the following FSM transition rules:
( s0 , a , s2 )
( s2 , a , s0 )
With the initial state: s0, and accepting states: ['s2', 's0'],
What will be the state after reading the following input: a a a a a a a | s2 | 7 | 2 | 1 | 2_1 | ( s0 , a , s2 )
( s2 , a , s0 ) |
b670d04a-0912-448d-aa75-af2a490c814b | 672a287e-9b79-49af-8c9a-a24ec5fe010f | {"states": ["s0", "s2"], "alphabets": "a", "accepting_states": ["s2", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}]} | 1 | {"a":{"s0":"s2","s2":"s0"}} | Given the following FSM transition rules:
( s0 , a , s2 )
( s2 , a , s0 )
With the initial state: s0, and accepting states: ['s2', 's0'],
What will be the state after reading the following input: a a a a a a a a | s0 | 8 | 2 | 1 | 2_1 | ( s0 , a , s2 )
( s2 , a , s0 ) |
290b2c3e-ae1c-42f1-88db-9725b55537b1 | 672a287e-9b79-49af-8c9a-a24ec5fe010f | {"states": ["s0", "s2"], "alphabets": "a", "accepting_states": ["s2", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}]} | 1 | {"a":{"s0":"s2","s2":"s0"}} | Given the following FSM transition rules:
( s0 , a , s2 )
( s2 , a , s0 )
With the initial state: s0, and accepting states: ['s2', 's0'],
What will be the state after reading the following input: a a a a a a a a a | s2 | 9 | 2 | 1 | 2_1 | ( s0 , a , s2 )
( s2 , a , s0 ) |
973758e3-30b6-4119-8e6f-1f80d7d08540 | 60336d5d-be2a-4324-923b-d1d7c7a6b84e | {"states": ["s0", "s10"], "alphabets": "a", "accepting_states": ["s10", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s10"]}, {"fromState": "s10", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s10","s10":"s0"}} | Given the following FSM transition rules:
( s0 , a , s10 )
( s10 , a , s0 )
With the initial state: s0, and accepting states: ['s10', 's0'],
What will be the state after reading the following input: a | s10 | 1 | 2 | 1 | 2_1 | ( s0 , a , s10 )
( s10 , a , s0 ) |
08145435-e1bb-49ac-a082-38738a7d3d22 | 60336d5d-be2a-4324-923b-d1d7c7a6b84e | {"states": ["s0", "s10"], "alphabets": "a", "accepting_states": ["s10", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s10"]}, {"fromState": "s10", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s10","s10":"s0"}} | Given the following FSM transition rules:
( s0 , a , s10 )
( s10 , a , s0 )
With the initial state: s0, and accepting states: ['s10', 's0'],
What will be the state after reading the following input: a a | s0 | 2 | 2 | 1 | 2_1 | ( s0 , a , s10 )
( s10 , a , s0 ) |
99bfeb50-e418-4769-b3db-4901ef52ffbd | 60336d5d-be2a-4324-923b-d1d7c7a6b84e | {"states": ["s0", "s10"], "alphabets": "a", "accepting_states": ["s10", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s10"]}, {"fromState": "s10", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s10","s10":"s0"}} | Given the following FSM transition rules:
( s0 , a , s10 )
( s10 , a , s0 )
With the initial state: s0, and accepting states: ['s10', 's0'],
What will be the state after reading the following input: a a a | s10 | 3 | 2 | 1 | 2_1 | ( s0 , a , s10 )
( s10 , a , s0 ) |
16cf46b8-59e1-4cb6-b163-2500f6709691 | 60336d5d-be2a-4324-923b-d1d7c7a6b84e | {"states": ["s0", "s10"], "alphabets": "a", "accepting_states": ["s10", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s10"]}, {"fromState": "s10", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s10","s10":"s0"}} | Given the following FSM transition rules:
( s0 , a , s10 )
( s10 , a , s0 )
With the initial state: s0, and accepting states: ['s10', 's0'],
What will be the state after reading the following input: a a a a | s0 | 4 | 2 | 1 | 2_1 | ( s0 , a , s10 )
( s10 , a , s0 ) |
7734a0ff-97f5-4143-8180-dee48ebb5f87 | 60336d5d-be2a-4324-923b-d1d7c7a6b84e | {"states": ["s0", "s10"], "alphabets": "a", "accepting_states": ["s10", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s10"]}, {"fromState": "s10", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s10","s10":"s0"}} | Given the following FSM transition rules:
( s0 , a , s10 )
( s10 , a , s0 )
With the initial state: s0, and accepting states: ['s10', 's0'],
What will be the state after reading the following input: a a a a a | s10 | 5 | 2 | 1 | 2_1 | ( s0 , a , s10 )
( s10 , a , s0 ) |
15e2b68d-d026-4945-90d3-f2679b262895 | 60336d5d-be2a-4324-923b-d1d7c7a6b84e | {"states": ["s0", "s10"], "alphabets": "a", "accepting_states": ["s10", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s10"]}, {"fromState": "s10", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s10","s10":"s0"}} | Given the following FSM transition rules:
( s0 , a , s10 )
( s10 , a , s0 )
With the initial state: s0, and accepting states: ['s10', 's0'],
What will be the state after reading the following input: a a a a a a | s0 | 6 | 2 | 1 | 2_1 | ( s0 , a , s10 )
( s10 , a , s0 ) |
bd79092d-cef0-48b3-bab8-04d564963d82 | 60336d5d-be2a-4324-923b-d1d7c7a6b84e | {"states": ["s0", "s10"], "alphabets": "a", "accepting_states": ["s10", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s10"]}, {"fromState": "s10", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s10","s10":"s0"}} | Given the following FSM transition rules:
( s0 , a , s10 )
( s10 , a , s0 )
With the initial state: s0, and accepting states: ['s10', 's0'],
What will be the state after reading the following input: a a a a a a a | s10 | 7 | 2 | 1 | 2_1 | ( s0 , a , s10 )
( s10 , a , s0 ) |
47e19872-a650-4f79-bd5e-4eaf04a0cfed | 60336d5d-be2a-4324-923b-d1d7c7a6b84e | {"states": ["s0", "s10"], "alphabets": "a", "accepting_states": ["s10", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s10"]}, {"fromState": "s10", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s10","s10":"s0"}} | Given the following FSM transition rules:
( s0 , a , s10 )
( s10 , a , s0 )
With the initial state: s0, and accepting states: ['s10', 's0'],
What will be the state after reading the following input: a a a a a a a a | s0 | 8 | 2 | 1 | 2_1 | ( s0 , a , s10 )
( s10 , a , s0 ) |
ca8ea921-4deb-4597-bb3a-101a07e6e46e | 60336d5d-be2a-4324-923b-d1d7c7a6b84e | {"states": ["s0", "s10"], "alphabets": "a", "accepting_states": ["s10", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s10"]}, {"fromState": "s10", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s10","s10":"s0"}} | Given the following FSM transition rules:
( s0 , a , s10 )
( s10 , a , s0 )
With the initial state: s0, and accepting states: ['s10', 's0'],
What will be the state after reading the following input: a a a a a a a a a | s10 | 9 | 2 | 1 | 2_1 | ( s0 , a , s10 )
( s10 , a , s0 ) |
918d25c0-92ef-47cb-b864-7bff69242584 | 5bbd0bec-dc0b-46c3-b5a1-666c5c81b31c | {"states": ["s0", "s8"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s8"]}]} | 3 | {"a":{"s0":"s8","s8":"s8"}} | Given the following FSM transition rules:
( s0 , a , s8 )
( s8 , a , s8 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a | s8 | 1 | 2 | 1 | 2_1 | ( s0 , a , s8 )
( s8 , a , s8 ) |
37f5160d-3fb3-493e-b66c-652b777b8f5c | 5bbd0bec-dc0b-46c3-b5a1-666c5c81b31c | {"states": ["s0", "s8"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s8"]}]} | 3 | {"a":{"s0":"s8","s8":"s8"}} | Given the following FSM transition rules:
( s0 , a , s8 )
( s8 , a , s8 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a | s8 | 2 | 2 | 1 | 2_1 | ( s0 , a , s8 )
( s8 , a , s8 ) |
adcae216-2259-4fdf-a7bc-17c3d4884e0a | 5bbd0bec-dc0b-46c3-b5a1-666c5c81b31c | {"states": ["s0", "s8"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s8"]}]} | 3 | {"a":{"s0":"s8","s8":"s8"}} | Given the following FSM transition rules:
( s0 , a , s8 )
( s8 , a , s8 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a | s8 | 3 | 2 | 1 | 2_1 | ( s0 , a , s8 )
( s8 , a , s8 ) |
1c16dcb5-afbf-4163-b58f-ac172d73882b | 5bbd0bec-dc0b-46c3-b5a1-666c5c81b31c | {"states": ["s0", "s8"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s8"]}]} | 3 | {"a":{"s0":"s8","s8":"s8"}} | Given the following FSM transition rules:
( s0 , a , s8 )
( s8 , a , s8 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a | s8 | 4 | 2 | 1 | 2_1 | ( s0 , a , s8 )
( s8 , a , s8 ) |
7ec5e196-ff86-47da-8ebb-0d21576a58db | 5bbd0bec-dc0b-46c3-b5a1-666c5c81b31c | {"states": ["s0", "s8"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s8"]}]} | 3 | {"a":{"s0":"s8","s8":"s8"}} | Given the following FSM transition rules:
( s0 , a , s8 )
( s8 , a , s8 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a a a a a | s8 | 5 | 2 | 1 | 2_1 | ( s0 , a , s8 )
( s8 , a , s8 ) |
20a8cc20-cf5a-4e25-a685-f3278eb0dc3e | 5bbd0bec-dc0b-46c3-b5a1-666c5c81b31c | {"states": ["s0", "s8"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s8"]}]} | 3 | {"a":{"s0":"s8","s8":"s8"}} | Given the following FSM transition rules:
( s0 , a , s8 )
( s8 , a , s8 )
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 | s8 | 6 | 2 | 1 | 2_1 | ( s0 , a , s8 )
( s8 , a , s8 ) |
42786f09-8582-4443-9e31-65c895efab3b | 5bbd0bec-dc0b-46c3-b5a1-666c5c81b31c | {"states": ["s0", "s8"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s8"]}]} | 3 | {"a":{"s0":"s8","s8":"s8"}} | Given the following FSM transition rules:
( s0 , a , s8 )
( s8 , a , s8 )
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 | s8 | 7 | 2 | 1 | 2_1 | ( s0 , a , s8 )
( s8 , a , s8 ) |
c4f99da1-53dc-402c-9eb0-51477678c983 | 5bbd0bec-dc0b-46c3-b5a1-666c5c81b31c | {"states": ["s0", "s8"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s8"]}]} | 3 | {"a":{"s0":"s8","s8":"s8"}} | Given the following FSM transition rules:
( s0 , a , s8 )
( s8 , a , s8 )
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 | s8 | 8 | 2 | 1 | 2_1 | ( s0 , a , s8 )
( s8 , a , s8 ) |
f9e89c02-e925-4dc5-9cc7-4b63795891f8 | 5bbd0bec-dc0b-46c3-b5a1-666c5c81b31c | {"states": ["s0", "s8"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s8"]}]} | 3 | {"a":{"s0":"s8","s8":"s8"}} | Given the following FSM transition rules:
( s0 , a , s8 )
( s8 , a , s8 )
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 | s8 | 9 | 2 | 1 | 2_1 | ( s0 , a , s8 )
( s8 , a , s8 ) |
bb459c02-0a71-49cf-b227-ac2466d675d4 | c6cadf49-74d7-4ed9-b50b-b86bae0238fa | {"states": ["s0", "s5"], "alphabets": "a", "accepting_states": ["s0", "s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s5","s5":"s0"}} | Given the following FSM transition rules:
( s0 , a , s5 )
( s5 , a , s0 )
With the initial state: s0, and accepting states: ['s0', 's5'],
What will be the state after reading the following input: a | s5 | 1 | 2 | 1 | 2_1 | ( s0 , a , s5 )
( s5 , a , s0 ) |
ae7f4720-cda6-4ba4-8bec-7ff57d4b52eb | c6cadf49-74d7-4ed9-b50b-b86bae0238fa | {"states": ["s0", "s5"], "alphabets": "a", "accepting_states": ["s0", "s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s5","s5":"s0"}} | Given the following FSM transition rules:
( s0 , a , s5 )
( s5 , a , s0 )
With the initial state: s0, and accepting states: ['s0', 's5'],
What will be the state after reading the following input: a a | s0 | 2 | 2 | 1 | 2_1 | ( s0 , a , s5 )
( s5 , a , s0 ) |
af02688a-d617-44fe-8b57-8adcc5b4793b | c6cadf49-74d7-4ed9-b50b-b86bae0238fa | {"states": ["s0", "s5"], "alphabets": "a", "accepting_states": ["s0", "s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s5","s5":"s0"}} | Given the following FSM transition rules:
( s0 , a , s5 )
( s5 , a , s0 )
With the initial state: s0, and accepting states: ['s0', 's5'],
What will be the state after reading the following input: a a a | s5 | 3 | 2 | 1 | 2_1 | ( s0 , a , s5 )
( s5 , a , s0 ) |
ca735b25-26b4-490f-9e30-c601bb2972a2 | c6cadf49-74d7-4ed9-b50b-b86bae0238fa | {"states": ["s0", "s5"], "alphabets": "a", "accepting_states": ["s0", "s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s5","s5":"s0"}} | Given the following FSM transition rules:
( s0 , a , s5 )
( s5 , a , s0 )
With the initial state: s0, and accepting states: ['s0', 's5'],
What will be the state after reading the following input: a a a a | s0 | 4 | 2 | 1 | 2_1 | ( s0 , a , s5 )
( s5 , a , s0 ) |
7cea89c9-694b-44ec-ae64-56ed452036c8 | c6cadf49-74d7-4ed9-b50b-b86bae0238fa | {"states": ["s0", "s5"], "alphabets": "a", "accepting_states": ["s0", "s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s5","s5":"s0"}} | Given the following FSM transition rules:
( s0 , a , s5 )
( s5 , a , s0 )
With the initial state: s0, and accepting states: ['s0', 's5'],
What will be the state after reading the following input: a a a a a | s5 | 5 | 2 | 1 | 2_1 | ( s0 , a , s5 )
( s5 , a , s0 ) |
6bc50b77-3a63-49fa-8d15-980f74b37dab | c6cadf49-74d7-4ed9-b50b-b86bae0238fa | {"states": ["s0", "s5"], "alphabets": "a", "accepting_states": ["s0", "s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s5","s5":"s0"}} | Given the following FSM transition rules:
( s0 , a , s5 )
( s5 , a , s0 )
With the initial state: s0, and accepting states: ['s0', 's5'],
What will be the state after reading the following input: a a a a a a | s0 | 6 | 2 | 1 | 2_1 | ( s0 , a , s5 )
( s5 , a , s0 ) |
845ad865-fc66-4802-89e6-d9910b038aaf | c6cadf49-74d7-4ed9-b50b-b86bae0238fa | {"states": ["s0", "s5"], "alphabets": "a", "accepting_states": ["s0", "s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s5","s5":"s0"}} | Given the following FSM transition rules:
( s0 , a , s5 )
( s5 , a , s0 )
With the initial state: s0, and accepting states: ['s0', 's5'],
What will be the state after reading the following input: a a a a a a a | s5 | 7 | 2 | 1 | 2_1 | ( s0 , a , s5 )
( s5 , a , s0 ) |
22af83b0-1606-43cb-8ad3-131fe1e6d3ca | c6cadf49-74d7-4ed9-b50b-b86bae0238fa | {"states": ["s0", "s5"], "alphabets": "a", "accepting_states": ["s0", "s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s5","s5":"s0"}} | Given the following FSM transition rules:
( s0 , a , s5 )
( s5 , a , s0 )
With the initial state: s0, and accepting states: ['s0', 's5'],
What will be the state after reading the following input: a a a a a a a a | s0 | 8 | 2 | 1 | 2_1 | ( s0 , a , s5 )
( s5 , a , s0 ) |
e08e2c60-74bd-49fa-8a05-004987bbaf48 | c6cadf49-74d7-4ed9-b50b-b86bae0238fa | {"states": ["s0", "s5"], "alphabets": "a", "accepting_states": ["s0", "s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s0"]}]} | 3 | {"a":{"s0":"s5","s5":"s0"}} | Given the following FSM transition rules:
( s0 , a , s5 )
( s5 , a , s0 )
With the initial state: s0, and accepting states: ['s0', 's5'],
What will be the state after reading the following input: a a a a a a a a a | s5 | 9 | 2 | 1 | 2_1 | ( s0 , a , s5 )
( s5 , a , s0 ) |
50a6acb2-5467-4d53-bd9a-8373cb9038ea | d573aeee-0719-4fb8-8ed5-dfda31d4097a | {"states": ["s0", "s4"], "alphabets": "ab", "accepting_states": ["s4", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s4"]}]} | 2 | {"a":{"s0":"s4","s4":"s4"},"b":{"s0":"s4","s4":"s4"}} | Given the following FSM transition rules:
( s0 , a , s4 )
( s4 , a , s4 )
( s0 , b , s4 )
( s4 , b , s4 )
With the initial state: s0, and accepting states: ['s4', 's0'],
What will be the state after reading the following input: b | s4 | 1 | 2 | 2 | 2_2 | ( s0 , a , s4 )
( s4 , a , s4 )
( s0 , b , s4 )
( s4 , b , s4 ) |
9f6ea965-d9d2-4352-b6c4-0f77afaf4ba1 | d573aeee-0719-4fb8-8ed5-dfda31d4097a | {"states": ["s0", "s4"], "alphabets": "ab", "accepting_states": ["s4", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s4"]}]} | 2 | {"a":{"s0":"s4","s4":"s4"},"b":{"s0":"s4","s4":"s4"}} | Given the following FSM transition rules:
( s0 , a , s4 )
( s4 , a , s4 )
( s0 , b , s4 )
( s4 , b , s4 )
With the initial state: s0, and accepting states: ['s4', 's0'],
What will be the state after reading the following input: b b | s4 | 2 | 2 | 2 | 2_2 | ( s0 , a , s4 )
( s4 , a , s4 )
( s0 , b , s4 )
( s4 , b , s4 ) |
13f56c84-6029-4fe7-9590-80c897425b8f | d573aeee-0719-4fb8-8ed5-dfda31d4097a | {"states": ["s0", "s4"], "alphabets": "ab", "accepting_states": ["s4", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s4"]}]} | 2 | {"a":{"s0":"s4","s4":"s4"},"b":{"s0":"s4","s4":"s4"}} | Given the following FSM transition rules:
( s0 , a , s4 )
( s4 , a , s4 )
( s0 , b , s4 )
( s4 , b , s4 )
With the initial state: s0, and accepting states: ['s4', 's0'],
What will be the state after reading the following input: b b b | s4 | 3 | 2 | 2 | 2_2 | ( s0 , a , s4 )
( s4 , a , s4 )
( s0 , b , s4 )
( s4 , b , s4 ) |
8500ba17-d68c-49e1-acc4-3d5690226fb8 | d573aeee-0719-4fb8-8ed5-dfda31d4097a | {"states": ["s0", "s4"], "alphabets": "ab", "accepting_states": ["s4", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s4"]}]} | 2 | {"a":{"s0":"s4","s4":"s4"},"b":{"s0":"s4","s4":"s4"}} | Given the following FSM transition rules:
( s0 , a , s4 )
( s4 , a , s4 )
( s0 , b , s4 )
( s4 , b , s4 )
With the initial state: s0, and accepting states: ['s4', 's0'],
What will be the state after reading the following input: b b b a | s4 | 4 | 2 | 2 | 2_2 | ( s0 , a , s4 )
( s4 , a , s4 )
( s0 , b , s4 )
( s4 , b , s4 ) |
d04dd7d2-6b81-4e40-826f-94b2c44a2f77 | d573aeee-0719-4fb8-8ed5-dfda31d4097a | {"states": ["s0", "s4"], "alphabets": "ab", "accepting_states": ["s4", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s4"]}]} | 2 | {"a":{"s0":"s4","s4":"s4"},"b":{"s0":"s4","s4":"s4"}} | Given the following FSM transition rules:
( s0 , a , s4 )
( s4 , a , s4 )
( s0 , b , s4 )
( s4 , b , s4 )
With the initial state: s0, and accepting states: ['s4', 's0'],
What will be the state after reading the following input: b b b a a | s4 | 5 | 2 | 2 | 2_2 | ( s0 , a , s4 )
( s4 , a , s4 )
( s0 , b , s4 )
( s4 , b , s4 ) |
2c3734d0-596c-4b2e-91f3-1d3d5f066c37 | d573aeee-0719-4fb8-8ed5-dfda31d4097a | {"states": ["s0", "s4"], "alphabets": "ab", "accepting_states": ["s4", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s4"]}]} | 2 | {"a":{"s0":"s4","s4":"s4"},"b":{"s0":"s4","s4":"s4"}} | Given the following FSM transition rules:
( s0 , a , s4 )
( s4 , a , s4 )
( s0 , b , s4 )
( s4 , b , s4 )
With the initial state: s0, and accepting states: ['s4', 's0'],
What will be the state after reading the following input: b b b a a a | s4 | 6 | 2 | 2 | 2_2 | ( s0 , a , s4 )
( s4 , a , s4 )
( s0 , b , s4 )
( s4 , b , s4 ) |
f0cab09f-d484-4180-84d3-75e456938fd4 | d573aeee-0719-4fb8-8ed5-dfda31d4097a | {"states": ["s0", "s4"], "alphabets": "ab", "accepting_states": ["s4", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s4"]}]} | 2 | {"a":{"s0":"s4","s4":"s4"},"b":{"s0":"s4","s4":"s4"}} | Given the following FSM transition rules:
( s0 , a , s4 )
( s4 , a , s4 )
( s0 , b , s4 )
( s4 , b , s4 )
With the initial state: s0, and accepting states: ['s4', 's0'],
What will be the state after reading the following input: b b b a a a b | s4 | 7 | 2 | 2 | 2_2 | ( s0 , a , s4 )
( s4 , a , s4 )
( s0 , b , s4 )
( s4 , b , s4 ) |
e1b53d28-f57d-4564-aafa-c83a91e33b02 | d573aeee-0719-4fb8-8ed5-dfda31d4097a | {"states": ["s0", "s4"], "alphabets": "ab", "accepting_states": ["s4", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s4"]}]} | 2 | {"a":{"s0":"s4","s4":"s4"},"b":{"s0":"s4","s4":"s4"}} | Given the following FSM transition rules:
( s0 , a , s4 )
( s4 , a , s4 )
( s0 , b , s4 )
( s4 , b , s4 )
With the initial state: s0, and accepting states: ['s4', 's0'],
What will be the state after reading the following input: b b b a a a b a | s4 | 8 | 2 | 2 | 2_2 | ( s0 , a , s4 )
( s4 , a , s4 )
( s0 , b , s4 )
( s4 , b , s4 ) |
f0f84bb7-a833-462c-aa00-dad9cb90fa42 | d573aeee-0719-4fb8-8ed5-dfda31d4097a | {"states": ["s0", "s4"], "alphabets": "ab", "accepting_states": ["s4", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s4"]}]} | 2 | {"a":{"s0":"s4","s4":"s4"},"b":{"s0":"s4","s4":"s4"}} | Given the following FSM transition rules:
( s0 , a , s4 )
( s4 , a , s4 )
( s0 , b , s4 )
( s4 , b , s4 )
With the initial state: s0, and accepting states: ['s4', 's0'],
What will be the state after reading the following input: b b b a a a b a b | s4 | 9 | 2 | 2 | 2_2 | ( s0 , a , s4 )
( s4 , a , s4 )
( s0 , b , s4 )
( s4 , b , s4 ) |
c799e9b7-ceb9-4170-bde3-b3fb7177b30a | 01e809a4-7811-4a52-9ada-8ffdc9fb1b7b | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]} | 1 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
With the initial state: s0, and accepting states: ['s1', 's0'],
What will be the state after reading the following input: b | s1 | 1 | 2 | 2 | 2_2 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 ) |
cfe43b52-5d43-4ee4-84fc-ea1ff393c90d | 01e809a4-7811-4a52-9ada-8ffdc9fb1b7b | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]} | 1 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
With the initial state: s0, and accepting states: ['s1', 's0'],
What will be the state after reading the following input: b a | s0 | 2 | 2 | 2 | 2_2 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 ) |
03014b95-c9af-4fab-b766-8f01b4e17cc5 | 01e809a4-7811-4a52-9ada-8ffdc9fb1b7b | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]} | 1 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
With the initial state: s0, and accepting states: ['s1', 's0'],
What will be the state after reading the following input: b a b | s1 | 3 | 2 | 2 | 2_2 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 ) |
17044311-dda0-402b-87cf-2825a615b061 | 01e809a4-7811-4a52-9ada-8ffdc9fb1b7b | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]} | 1 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
With the initial state: s0, and accepting states: ['s1', 's0'],
What will be the state after reading the following input: b a b a | s0 | 4 | 2 | 2 | 2_2 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 ) |
8d6fcbfe-859c-4d05-96be-c4d7f03d6dbe | 01e809a4-7811-4a52-9ada-8ffdc9fb1b7b | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]} | 1 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
With the initial state: s0, and accepting states: ['s1', 's0'],
What will be the state after reading the following input: b a b a b | s1 | 5 | 2 | 2 | 2_2 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 ) |
321140b7-b6a1-45c7-8d6f-0da62569926c | 01e809a4-7811-4a52-9ada-8ffdc9fb1b7b | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]} | 1 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
With the initial state: s0, and accepting states: ['s1', 's0'],
What will be the state after reading the following input: b a b a b a | s0 | 6 | 2 | 2 | 2_2 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 ) |
6b98104d-29fe-49e3-b79c-a83f1d60951f | 01e809a4-7811-4a52-9ada-8ffdc9fb1b7b | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]} | 1 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
With the initial state: s0, and accepting states: ['s1', 's0'],
What will be the state after reading the following input: b a b a b a a | s1 | 7 | 2 | 2 | 2_2 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 ) |
b66db409-d69e-4ff8-bbe3-ceee37111ad4 | 01e809a4-7811-4a52-9ada-8ffdc9fb1b7b | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]} | 1 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
With the initial state: s0, and accepting states: ['s1', 's0'],
What will be the state after reading the following input: b a b a b a a b | s1 | 8 | 2 | 2 | 2_2 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 ) |
a7d8f774-0289-4b55-90ff-918598355461 | 01e809a4-7811-4a52-9ada-8ffdc9fb1b7b | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]} | 1 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
With the initial state: s0, and accepting states: ['s1', 's0'],
What will be the state after reading the following input: b a b a b a a b a | s0 | 9 | 2 | 2 | 2_2 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 ) |
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 transition rules:
( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , 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 | ( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 ) |
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 transition rules:
( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , 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 | ( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 ) |
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 transition rules:
( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , 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 | ( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 ) |
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 transition rules:
( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , 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 | ( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 ) |
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 transition rules:
( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , 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 | ( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 ) |
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 transition rules:
( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , 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 | ( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 ) |
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 transition rules:
( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , 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 | ( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 ) |
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 transition rules:
( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , 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 | ( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 ) |
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 transition rules:
( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , 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 | ( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 ) |
dd59c6fe-d899-44ce-9456-f35c9464777c | 5a3b16ad-25af-458a-992e-3992cdab52cb | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s0", "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 transition rules:
( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 )
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: a | s0 | 1 | 2 | 2 | 2_2 | ( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 ) |
End of preview. Expand
in Dataset Viewer.
README.md exists but content is empty.
Use the Edit dataset card button to edit it.
- Downloads last month
- 53