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 |
---|---|---|---|---|---|---|---|---|---|---|---|
8dde5056-55cb-4371-8adc-bce7364600d8 | 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 b | s1 | 2 | 2 | 2 | 2_2 | ( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 ) |
43f88b74-8028-46e1-8dcf-82c1b12e0b6d | 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 b a | s1 | 3 | 2 | 2 | 2_2 | ( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 ) |
3d1f3f5a-8fea-460c-abc7-a0edabd3c639 | 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 b a b | s1 | 4 | 2 | 2 | 2_2 | ( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 ) |
e316730f-43d2-45f7-bd59-87e67f79a5c6 | 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 b a b b | s1 | 5 | 2 | 2 | 2_2 | ( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 ) |
529bfa3c-1752-47c5-bc94-562260e41828 | 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 b a b b a | s1 | 6 | 2 | 2 | 2_2 | ( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 ) |
7699dc8e-fed0-4493-b97d-f61ccccc8469 | 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 b a b b a a | s1 | 7 | 2 | 2 | 2_2 | ( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 ) |
c5d20a1f-2ccd-40e4-91f8-832f17d495da | 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 b a b b a a a | s1 | 8 | 2 | 2 | 2_2 | ( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 ) |
713c001c-fda0-434a-a4b9-53f2552b6227 | 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 b a b b a a a a | s1 | 9 | 2 | 2 | 2_2 | ( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 ) |
9a2d5ee1-1353-47dd-b75f-38b695b7d880 | ee44f305-55f8-4baf-bd96-dd360b60fdbb | {"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": ["s0"]}]} | 1 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s1","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 )
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 , s0 ) |
f183a9d1-1703-47a1-9185-c52ed18b7bdd | ee44f305-55f8-4baf-bd96-dd360b60fdbb | {"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": ["s0"]}]} | 1 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s1","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 )
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 , s0 ) |
b80d634c-08e2-41a4-9306-7090d712c178 | ee44f305-55f8-4baf-bd96-dd360b60fdbb | {"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": ["s0"]}]} | 1 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s1","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: b a b | s0 | 3 | 2 | 2 | 2_2 | ( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 ) |
83fc41bf-7932-4789-bc5c-8fcde7d539df | ee44f305-55f8-4baf-bd96-dd360b60fdbb | {"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": ["s0"]}]} | 1 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s1","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: b a b b | s1 | 4 | 2 | 2 | 2_2 | ( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 ) |
10f13990-35b2-4d5e-b4f1-04643574f10c | ee44f305-55f8-4baf-bd96-dd360b60fdbb | {"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": ["s0"]}]} | 1 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s1","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: b a b b b | s0 | 5 | 2 | 2 | 2_2 | ( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 ) |
2d42b1c7-f70e-4530-9b13-627ef4841ced | ee44f305-55f8-4baf-bd96-dd360b60fdbb | {"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": ["s0"]}]} | 1 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s1","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: b a b b b a | s0 | 6 | 2 | 2 | 2_2 | ( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 ) |
cb1de0c5-1234-4add-aaf5-fc4ca54ed24e | ee44f305-55f8-4baf-bd96-dd360b60fdbb | {"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": ["s0"]}]} | 1 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s1","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: b a b b b a a | s0 | 7 | 2 | 2 | 2_2 | ( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 ) |
adedd048-faed-4f94-8eb5-53a842a2e6ab | ee44f305-55f8-4baf-bd96-dd360b60fdbb | {"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": ["s0"]}]} | 1 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s1","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: b a b b b a a b | s1 | 8 | 2 | 2 | 2_2 | ( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 ) |
8e48e374-ade1-489d-a0d6-33be6fbf62a2 | ee44f305-55f8-4baf-bd96-dd360b60fdbb | {"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": ["s0"]}]} | 1 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s1","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: b a b b b a a b a | s1 | 9 | 2 | 2 | 2_2 | ( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 ) |
3409a466-5369-4386-bce6-95f43ddc4a94 | 95bfb8db-18ed-4ea4-bb5b-14ae1867285b | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "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": ["s0"]}]} | 1 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s1","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 )
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 , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 ) |
2ffbcd10-0331-4bdb-b708-d111a1a2c2e5 | 95bfb8db-18ed-4ea4-bb5b-14ae1867285b | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "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": ["s0"]}]} | 1 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s1","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 )
With the initial state: s0, and accepting states: ['s1', 's0'],
What will be the state after reading the following input: b b | s0 | 2 | 2 | 2 | 2_2 | ( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 ) |
55d40247-aad4-4bb0-8afb-d0f9f70e6e1c | 95bfb8db-18ed-4ea4-bb5b-14ae1867285b | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "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": ["s0"]}]} | 1 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s1","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 )
With the initial state: s0, and accepting states: ['s1', 's0'],
What will be the state after reading the following input: b b a | s0 | 3 | 2 | 2 | 2_2 | ( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 ) |
6f289b7e-1818-4cbf-9ba0-190fbf35c7b0 | 95bfb8db-18ed-4ea4-bb5b-14ae1867285b | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "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": ["s0"]}]} | 1 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s1","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 )
With the initial state: s0, and accepting states: ['s1', 's0'],
What will be the state after reading the following input: b b a b | s1 | 4 | 2 | 2 | 2_2 | ( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 ) |
64f80e3d-6384-48b9-9d41-8e3adb2dff43 | 95bfb8db-18ed-4ea4-bb5b-14ae1867285b | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "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": ["s0"]}]} | 1 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s1","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 )
With the initial state: s0, and accepting states: ['s1', 's0'],
What will be the state after reading the following input: b b a b b | s0 | 5 | 2 | 2 | 2_2 | ( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 ) |
af03ed74-0c06-4eb6-8947-17ae8151f35f | 95bfb8db-18ed-4ea4-bb5b-14ae1867285b | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "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": ["s0"]}]} | 1 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s1","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 )
With the initial state: s0, and accepting states: ['s1', 's0'],
What will be the state after reading the following input: b b a b b b | s1 | 6 | 2 | 2 | 2_2 | ( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 ) |
68fcbe0e-f936-4de9-92d2-3968c89f1995 | 95bfb8db-18ed-4ea4-bb5b-14ae1867285b | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "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": ["s0"]}]} | 1 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s1","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 )
With the initial state: s0, and accepting states: ['s1', 's0'],
What will be the state after reading the following input: b b a b b b b | s0 | 7 | 2 | 2 | 2_2 | ( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 ) |
736087f5-4b99-4c9b-868f-a15e084825de | 95bfb8db-18ed-4ea4-bb5b-14ae1867285b | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "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": ["s0"]}]} | 1 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s1","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 )
With the initial state: s0, and accepting states: ['s1', 's0'],
What will be the state after reading the following input: b b a b b b b b | s1 | 8 | 2 | 2 | 2_2 | ( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 ) |
36172dc5-deac-4865-a67e-0c05cfec4dab | 95bfb8db-18ed-4ea4-bb5b-14ae1867285b | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "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": ["s0"]}]} | 1 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s1","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 )
With the initial state: s0, and accepting states: ['s1', 's0'],
What will be the state after reading the following input: b b a b b b b b b | s0 | 9 | 2 | 2 | 2_2 | ( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 ) |
c998d344-ab9b-42a6-ad37-2720f3d3dec6 | 27643360-d441-4ad1-987d-28705fb896f9 | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]} | 1 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s0 )
( s1 , b , s1 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b | s0 | 1 | 2 | 2 | 2_2 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s0 )
( s1 , b , s1 ) |
8c947d98-22b9-4ea4-8176-8eab64ca6edb | 27643360-d441-4ad1-987d-28705fb896f9 | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]} | 1 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s0 )
( s1 , b , s1 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b b | s0 | 2 | 2 | 2 | 2_2 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s0 )
( s1 , b , s1 ) |
a8bd1651-146d-401a-87e8-41390c665ab0 | 27643360-d441-4ad1-987d-28705fb896f9 | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]} | 1 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s0 )
( s1 , b , s1 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b b b | s0 | 3 | 2 | 2 | 2_2 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s0 )
( s1 , b , s1 ) |
a08b0659-b78b-4d83-b9be-89fcfc23eaa1 | 27643360-d441-4ad1-987d-28705fb896f9 | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]} | 1 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s0 )
( s1 , b , s1 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b b b b | s0 | 4 | 2 | 2 | 2_2 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s0 )
( s1 , b , s1 ) |
08ddca49-f6f7-48b9-9f03-635ef267326a | 27643360-d441-4ad1-987d-28705fb896f9 | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]} | 1 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s0 )
( s1 , b , s1 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b b b b b | s0 | 5 | 2 | 2 | 2_2 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s0 )
( s1 , b , s1 ) |
0bd6acc1-f498-4230-a48d-c42c9b72fc4e | 27643360-d441-4ad1-987d-28705fb896f9 | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]} | 1 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s0 )
( s1 , b , s1 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b b b b b b | s0 | 6 | 2 | 2 | 2_2 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s0 )
( s1 , b , s1 ) |
c343a194-9930-40f5-82d7-c3d46db2a4f0 | 27643360-d441-4ad1-987d-28705fb896f9 | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]} | 1 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s0 )
( s1 , b , s1 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b b b b b b b | s0 | 7 | 2 | 2 | 2_2 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s0 )
( s1 , b , s1 ) |
8b70df10-395a-4c71-b1a5-93f104582990 | 27643360-d441-4ad1-987d-28705fb896f9 | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]} | 1 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s0 )
( s1 , b , s1 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b b b b b b b b | s0 | 8 | 2 | 2 | 2_2 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s0 )
( s1 , b , s1 ) |
93f7135b-fed3-41bf-b53e-4cf374ab1c42 | 27643360-d441-4ad1-987d-28705fb896f9 | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]} | 1 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s0 )
( s1 , b , s1 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b b b b b b b b b | s0 | 9 | 2 | 2 | 2_2 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s0 )
( s1 , b , s1 ) |
270ace23-caae-4af8-9d0a-29f381834ca0 | c2d62eab-18e3-4e83-b1a6-3b0aac6bf295 | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}]} | 1 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s0 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: a | s1 | 1 | 2 | 2 | 2_2 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s0 ) |
ce9bee4e-2395-439c-94d5-7fb74da27fd6 | c2d62eab-18e3-4e83-b1a6-3b0aac6bf295 | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}]} | 1 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s0 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: a b | s0 | 2 | 2 | 2 | 2_2 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s0 ) |
040ee8df-09ee-4a56-9f73-ae2c11a99eb4 | c2d62eab-18e3-4e83-b1a6-3b0aac6bf295 | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}]} | 1 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s0 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: a b b | s0 | 3 | 2 | 2 | 2_2 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s0 ) |
5744418f-02a1-477c-b609-c90e206d05bf | c2d62eab-18e3-4e83-b1a6-3b0aac6bf295 | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}]} | 1 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s0 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: a b b b | s0 | 4 | 2 | 2 | 2_2 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s0 ) |
78752fe3-3ca1-4c7d-bff8-526536a2fe38 | c2d62eab-18e3-4e83-b1a6-3b0aac6bf295 | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}]} | 1 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s0 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: a b b b a | s1 | 5 | 2 | 2 | 2_2 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s0 ) |
6172702b-207d-4592-9bfc-7887be510c43 | c2d62eab-18e3-4e83-b1a6-3b0aac6bf295 | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}]} | 1 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s0 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: a b b b a a | s1 | 6 | 2 | 2 | 2_2 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s0 ) |
5ae40f47-bc93-4ffc-a26e-dc38c6958b35 | c2d62eab-18e3-4e83-b1a6-3b0aac6bf295 | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}]} | 1 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s0 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: a b b b a a b | s0 | 7 | 2 | 2 | 2_2 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s0 ) |
68626b89-8ed5-45a6-8969-729e67defd0c | c2d62eab-18e3-4e83-b1a6-3b0aac6bf295 | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}]} | 1 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s0 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: a b b b a a b b | s0 | 8 | 2 | 2 | 2_2 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s0 ) |
065fa020-6f2a-4458-86e0-03722ae2c66c | c2d62eab-18e3-4e83-b1a6-3b0aac6bf295 | {"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}]} | 1 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s0 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: a b b b a a b b a | s1 | 9 | 2 | 2 | 2_2 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s0 ) |
6da52d92-c0f7-40df-a092-734d6c51223b | 4106c6fb-cd54-4306-9618-f1bfde4721db | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s0","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s1 )
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: a | s1 | 1 | 2 | 3 | 2_3 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s1 ) |
a3686afe-d1e9-44cf-bbae-db0a07fc3296 | 4106c6fb-cd54-4306-9618-f1bfde4721db | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s0","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s1 )
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: a c | s1 | 2 | 2 | 3 | 2_3 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s1 ) |
4b462a97-f9a4-462f-97c6-b259aa5d33ff | 4106c6fb-cd54-4306-9618-f1bfde4721db | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s0","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s1 )
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: a c a | s0 | 3 | 2 | 3 | 2_3 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s1 ) |
e19d9ecb-ed35-4144-89e8-7876a8c09679 | 4106c6fb-cd54-4306-9618-f1bfde4721db | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s0","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s1 )
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: a c a a | s1 | 4 | 2 | 3 | 2_3 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s1 ) |
2c61656f-6151-4efe-9b4d-eccc0ab2532f | 4106c6fb-cd54-4306-9618-f1bfde4721db | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s0","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s1 )
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: a c a a a | s0 | 5 | 2 | 3 | 2_3 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s1 ) |
56f08e98-629d-4669-94ad-9b05d59ce629 | 4106c6fb-cd54-4306-9618-f1bfde4721db | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s0","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s1 )
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: a c a a a c | s0 | 6 | 2 | 3 | 2_3 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s1 ) |
d8a7a010-e25e-4967-937f-b88efdb043dd | 4106c6fb-cd54-4306-9618-f1bfde4721db | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s0","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s1 )
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: a c a a a c c | s0 | 7 | 2 | 3 | 2_3 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s1 ) |
597831d8-2dd7-4825-bd9b-71c745ac5f28 | 4106c6fb-cd54-4306-9618-f1bfde4721db | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s0","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s1 )
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: a c a a a c c a | s1 | 8 | 2 | 3 | 2_3 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s1 ) |
d041bfd3-14c2-4532-9699-97e1b15d31ed | 4106c6fb-cd54-4306-9618-f1bfde4721db | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s0","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s1 )
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: a c a a a c c a a | s0 | 9 | 2 | 3 | 2_3 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s1 ) |
a1066e2f-7663-42ad-8b15-3b943ad12ae7 | 07dac488-1ef9-4135-8894-296f7bec4497 | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b | s0 | 1 | 2 | 3 | 2_3 | ( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 ) |
a0252330-3b6c-4c0c-954d-24f812af0eb4 | 07dac488-1ef9-4135-8894-296f7bec4497 | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b b | s0 | 2 | 2 | 3 | 2_3 | ( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 ) |
105f43a0-6d66-4719-9d77-c407cc66998c | 07dac488-1ef9-4135-8894-296f7bec4497 | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b b a | s0 | 3 | 2 | 3 | 2_3 | ( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 ) |
2777b8e8-625c-4ad1-892a-151894e33c0e | 07dac488-1ef9-4135-8894-296f7bec4497 | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b b a c | s1 | 4 | 2 | 3 | 2_3 | ( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 ) |
f8ed9303-d58a-4a0d-bbe1-79d715cbd642 | 07dac488-1ef9-4135-8894-296f7bec4497 | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b b a c a | s1 | 5 | 2 | 3 | 2_3 | ( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 ) |
53e6ecda-2c98-4685-a4b1-a03e34989416 | 07dac488-1ef9-4135-8894-296f7bec4497 | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b b a c a a | s1 | 6 | 2 | 3 | 2_3 | ( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 ) |
5ea14984-7219-497e-9b45-18c7b564218b | 07dac488-1ef9-4135-8894-296f7bec4497 | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b b a c a a c | s1 | 7 | 2 | 3 | 2_3 | ( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 ) |
1c432b2d-7885-42f6-ae12-db34d2e7cf1f | 07dac488-1ef9-4135-8894-296f7bec4497 | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b b a c a a c c | s1 | 8 | 2 | 3 | 2_3 | ( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 ) |
6578b215-89cb-4549-9473-8170ec6f6929 | 07dac488-1ef9-4135-8894-296f7bec4497 | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s0","s1":"s1"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b b a c a a c c c | s1 | 9 | 2 | 3 | 2_3 | ( s0 , a , s0 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 ) |
9299d713-0eaf-4dc8-b21d-1781de195770 | 24c89e33-0fe0-4612-b987-d7444db8ee39 | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s1","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s0 )
With the initial state: s0, and accepting states: ['s1', 's0'],
What will be the state after reading the following input: c | s1 | 1 | 2 | 3 | 2_3 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s0 ) |
cf30e590-3fa6-41ac-954c-5c2c4f211a59 | 24c89e33-0fe0-4612-b987-d7444db8ee39 | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s1","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s0 )
With the initial state: s0, and accepting states: ['s1', 's0'],
What will be the state after reading the following input: c b | s1 | 2 | 2 | 3 | 2_3 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s0 ) |
ab00876b-ac7b-412e-83ed-aad8a42f2d6b | 24c89e33-0fe0-4612-b987-d7444db8ee39 | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s1","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s0 )
With the initial state: s0, and accepting states: ['s1', 's0'],
What will be the state after reading the following input: c b a | s0 | 3 | 2 | 3 | 2_3 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s0 ) |
8a046824-c0d6-40b2-922b-52c6f786789e | 24c89e33-0fe0-4612-b987-d7444db8ee39 | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s1","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s0 )
With the initial state: s0, and accepting states: ['s1', 's0'],
What will be the state after reading the following input: c b a c | s1 | 4 | 2 | 3 | 2_3 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s0 ) |
89411e61-cef6-4b5c-aed7-d027699748e9 | 24c89e33-0fe0-4612-b987-d7444db8ee39 | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s1","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s0 )
With the initial state: s0, and accepting states: ['s1', 's0'],
What will be the state after reading the following input: c b a c b | s1 | 5 | 2 | 3 | 2_3 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s0 ) |
96fb8316-9884-41bf-a42b-a6689a802c17 | 24c89e33-0fe0-4612-b987-d7444db8ee39 | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s1","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s0 )
With the initial state: s0, and accepting states: ['s1', 's0'],
What will be the state after reading the following input: c b a c b a | s0 | 6 | 2 | 3 | 2_3 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s0 ) |
ebf25306-546a-4be5-bee2-b4a1a5845daa | 24c89e33-0fe0-4612-b987-d7444db8ee39 | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s1","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s0 )
With the initial state: s0, and accepting states: ['s1', 's0'],
What will be the state after reading the following input: c b a c b a b | s1 | 7 | 2 | 3 | 2_3 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s0 ) |
f7d8848f-76a6-4180-bf81-a1fb770085af | 24c89e33-0fe0-4612-b987-d7444db8ee39 | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s1","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s0 )
With the initial state: s0, and accepting states: ['s1', 's0'],
What will be the state after reading the following input: c b a c b a b a | s0 | 8 | 2 | 3 | 2_3 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s0 ) |
7f4a8b99-ee58-4e5d-859b-4d615a7bcd6d | 24c89e33-0fe0-4612-b987-d7444db8ee39 | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s1","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s0 )
With the initial state: s0, and accepting states: ['s1', 's0'],
What will be the state after reading the following input: c b a c b a b a b | s1 | 9 | 2 | 3 | 2_3 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s0 ) |
5670d4fc-907f-4e8e-a96a-2ad15be49c23 | ae46a825-2ea8-446e-94e5-ac6938c84d6a | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s0"},"c":{"s0":"s0","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 )
( s0 , c , s0 )
( s1 , c , s0 )
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: a | s1 | 1 | 2 | 3 | 2_3 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 )
( s0 , c , s0 )
( s1 , c , s0 ) |
5f1d3053-4649-4e0d-8d9e-fce757c756fe | ae46a825-2ea8-446e-94e5-ac6938c84d6a | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s0"},"c":{"s0":"s0","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 )
( s0 , c , s0 )
( s1 , c , s0 )
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: a b | s0 | 2 | 2 | 3 | 2_3 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 )
( s0 , c , s0 )
( s1 , c , s0 ) |
4810a549-0aa5-450b-97dd-e7f924b759cb | ae46a825-2ea8-446e-94e5-ac6938c84d6a | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s0"},"c":{"s0":"s0","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 )
( s0 , c , s0 )
( s1 , c , s0 )
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: a b b | s1 | 3 | 2 | 3 | 2_3 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 )
( s0 , c , s0 )
( s1 , c , s0 ) |
48a56c3f-9872-4658-9643-14cb7f97994f | ae46a825-2ea8-446e-94e5-ac6938c84d6a | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s0"},"c":{"s0":"s0","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 )
( s0 , c , s0 )
( s1 , c , s0 )
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: a b b a | s1 | 4 | 2 | 3 | 2_3 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 )
( s0 , c , s0 )
( s1 , c , s0 ) |
034b8436-3bff-4bb6-81f6-0e24dae2b550 | ae46a825-2ea8-446e-94e5-ac6938c84d6a | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s0"},"c":{"s0":"s0","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 )
( s0 , c , s0 )
( s1 , c , s0 )
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: a b b a b | s0 | 5 | 2 | 3 | 2_3 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 )
( s0 , c , s0 )
( s1 , c , s0 ) |
0bab80ce-ad29-4548-8230-b9ba1d36a468 | ae46a825-2ea8-446e-94e5-ac6938c84d6a | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s0"},"c":{"s0":"s0","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 )
( s0 , c , s0 )
( s1 , c , s0 )
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: a b b a b a | s1 | 6 | 2 | 3 | 2_3 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 )
( s0 , c , s0 )
( s1 , c , s0 ) |
fbbcb387-37f3-4b88-b082-ccf7ba3d2f1b | ae46a825-2ea8-446e-94e5-ac6938c84d6a | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s0"},"c":{"s0":"s0","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 )
( s0 , c , s0 )
( s1 , c , s0 )
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: a b b a b a a | s1 | 7 | 2 | 3 | 2_3 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 )
( s0 , c , s0 )
( s1 , c , s0 ) |
55bbb8df-db28-4ca9-8160-78d89396119f | ae46a825-2ea8-446e-94e5-ac6938c84d6a | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s0"},"c":{"s0":"s0","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 )
( s0 , c , s0 )
( s1 , c , s0 )
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: a b b a b a a c | s0 | 8 | 2 | 3 | 2_3 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 )
( s0 , c , s0 )
( s1 , c , s0 ) |
ae1e8e7c-4230-49a4-b12b-d3d5a6fba5bc | ae46a825-2ea8-446e-94e5-ac6938c84d6a | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s0"},"c":{"s0":"s0","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 )
( s0 , c , s0 )
( s1 , c , s0 )
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: a b b a b a a c b | s1 | 9 | 2 | 3 | 2_3 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 )
( s0 , c , s0 )
( s1 , c , s0 ) |
e64588bb-1c13-4991-92ec-da61dce48636 | f4c5975e-0bd1-433a-9291-4dbcb7d268db | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s0","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s0 )
( s1 , a , s0 )
( s0 , b , s0 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b | s0 | 1 | 2 | 3 | 2_3 | ( s0 , a , s0 )
( s1 , a , s0 )
( s0 , b , s0 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 ) |
5e93efa7-86f2-4fe3-9ddd-63e53a25f9a8 | f4c5975e-0bd1-433a-9291-4dbcb7d268db | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s0","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s0 )
( s1 , a , s0 )
( s0 , b , s0 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b c | s1 | 2 | 2 | 3 | 2_3 | ( s0 , a , s0 )
( s1 , a , s0 )
( s0 , b , s0 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 ) |
10dad45d-a823-4dee-aa82-7f667641ed8e | f4c5975e-0bd1-433a-9291-4dbcb7d268db | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s0","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s0 )
( s1 , a , s0 )
( s0 , b , s0 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b c b | s0 | 3 | 2 | 3 | 2_3 | ( s0 , a , s0 )
( s1 , a , s0 )
( s0 , b , s0 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 ) |
dc8eae8e-65ba-4b95-a953-b600c4c507e8 | f4c5975e-0bd1-433a-9291-4dbcb7d268db | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s0","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s0 )
( s1 , a , s0 )
( s0 , b , s0 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b c b c | s1 | 4 | 2 | 3 | 2_3 | ( s0 , a , s0 )
( s1 , a , s0 )
( s0 , b , s0 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 ) |
e42f6bfe-b8e8-4248-9b18-77b5c2b36ff0 | f4c5975e-0bd1-433a-9291-4dbcb7d268db | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s0","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s0 )
( s1 , a , s0 )
( s0 , b , s0 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b c b c b | s0 | 5 | 2 | 3 | 2_3 | ( s0 , a , s0 )
( s1 , a , s0 )
( s0 , b , s0 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 ) |
c3cc3cb7-b7e3-4041-bc18-de34bb98d9ad | f4c5975e-0bd1-433a-9291-4dbcb7d268db | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s0","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s0 )
( s1 , a , s0 )
( s0 , b , s0 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b c b c b c | s1 | 6 | 2 | 3 | 2_3 | ( s0 , a , s0 )
( s1 , a , s0 )
( s0 , b , s0 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 ) |
71f71ff7-f4b7-47da-856c-caed66b15530 | f4c5975e-0bd1-433a-9291-4dbcb7d268db | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s0","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s0 )
( s1 , a , s0 )
( s0 , b , s0 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b c b c b c a | s0 | 7 | 2 | 3 | 2_3 | ( s0 , a , s0 )
( s1 , a , s0 )
( s0 , b , s0 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 ) |
823a6dfb-754c-46a1-b5df-40e479f7741f | f4c5975e-0bd1-433a-9291-4dbcb7d268db | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s0","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s0 )
( s1 , a , s0 )
( s0 , b , s0 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b c b c b c a c | s1 | 8 | 2 | 3 | 2_3 | ( s0 , a , s0 )
( s1 , a , s0 )
( s0 , b , s0 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 ) |
8956a79f-0276-4661-bb25-952062381e78 | f4c5975e-0bd1-433a-9291-4dbcb7d268db | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s0","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s0 )
( s1 , a , s0 )
( s0 , b , s0 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: b c b c b c a c c | s1 | 9 | 2 | 3 | 2_3 | ( s0 , a , s0 )
( s1 , a , s0 )
( s0 , b , s0 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 ) |
21f63cbf-a44c-459d-b1d1-5684af2caf8d | f1e045e2-3e3f-4e24-95b9-c2ab9b0f612a | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s1"},"c":{"s0":"s0","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s0 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a | s1 | 1 | 2 | 3 | 2_3 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s0 ) |
afa8a350-a60f-49a5-ba0a-34210e321d4b | f1e045e2-3e3f-4e24-95b9-c2ab9b0f612a | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s1"},"c":{"s0":"s0","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s0 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a c | s0 | 2 | 2 | 3 | 2_3 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s0 ) |
a7c685bb-a6e8-4c5f-9361-e150eb674daa | f1e045e2-3e3f-4e24-95b9-c2ab9b0f612a | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s1"},"c":{"s0":"s0","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s0 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a c c | s0 | 3 | 2 | 3 | 2_3 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s0 ) |
eb552db1-223b-4ad5-afc1-0e30296c052e | f1e045e2-3e3f-4e24-95b9-c2ab9b0f612a | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s1"},"c":{"s0":"s0","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s0 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a c c a | s1 | 4 | 2 | 3 | 2_3 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s0 ) |
f254cc0e-6de0-4133-9312-094ebcd98535 | f1e045e2-3e3f-4e24-95b9-c2ab9b0f612a | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s1"},"c":{"s0":"s0","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s0 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a c c a a | s1 | 5 | 2 | 3 | 2_3 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s0 ) |
b23fe255-5c02-4f97-8084-6628241eca8b | f1e045e2-3e3f-4e24-95b9-c2ab9b0f612a | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s1"},"c":{"s0":"s0","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s0 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a c c a a c | s0 | 6 | 2 | 3 | 2_3 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s0 ) |
6ff9e831-e195-4fc2-8aac-3aad3c5511bd | f1e045e2-3e3f-4e24-95b9-c2ab9b0f612a | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s1"},"c":{"s0":"s0","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s0 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a c c a a c a | s1 | 7 | 2 | 3 | 2_3 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s0 ) |
64a506b7-c4ab-41f6-9f2f-f2505c20f4bf | f1e045e2-3e3f-4e24-95b9-c2ab9b0f612a | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s1"},"c":{"s0":"s0","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s0 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a c c a a c a a | s1 | 8 | 2 | 3 | 2_3 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s0 ) |
f1e9d289-f28f-4d9e-9b03-9f663c70f1f8 | f1e045e2-3e3f-4e24-95b9-c2ab9b0f612a | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s1"},"c":{"s0":"s0","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s0 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: a c c a a c a a a | s1 | 9 | 2 | 3 | 2_3 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s0 ) |
d51729ce-41be-459f-b64c-500211047044 | 124e2976-0100-4ac5-bec2-764ee77ab61a | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s0","s1":"s0"},"b":{"s0":"s1","s1":"s0"},"c":{"s0":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s0 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 )
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: b | s1 | 1 | 2 | 3 | 2_3 | ( s0 , a , s0 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 ) |
ca17fe49-0f7f-47f0-927b-6ea9182b08d4 | 124e2976-0100-4ac5-bec2-764ee77ab61a | {"states": ["s0", "s1"], "alphabets": "abc", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s0","s1":"s0"},"b":{"s0":"s1","s1":"s0"},"c":{"s0":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s0 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 )
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: b a | s0 | 2 | 2 | 3 | 2_3 | ( s0 , a , s0 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 ) |