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 |
---|---|---|---|---|---|---|---|---|---|---|---|
b0f4b897-a814-4aef-a008-c60f3203cb73 | 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 c | s1 | 3 | 2 | 3 | 2_3 | ( s0 , a , s0 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 ) |
626d9d5f-0280-46d1-8b5b-70e56b0c2626 | 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 c c | s1 | 4 | 2 | 3 | 2_3 | ( s0 , a , s0 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 ) |
60415b03-1e7f-4ac4-a843-e47014b8d645 | 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 c c a | s0 | 5 | 2 | 3 | 2_3 | ( s0 , a , s0 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 ) |
c1389f5f-9428-4ca9-8129-54072d07bf8f | 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 c c a c | s1 | 6 | 2 | 3 | 2_3 | ( s0 , a , s0 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 ) |
64438513-ad28-4b7b-ab55-845bf46d723f | 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 c c a c c | s1 | 7 | 2 | 3 | 2_3 | ( s0 , a , s0 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 ) |
72ec4df3-d375-4217-9f35-9b87d2728699 | 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 c c a c c b | s0 | 8 | 2 | 3 | 2_3 | ( s0 , a , s0 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 ) |
d63b9c79-6763-49d6-bba5-279af4877311 | 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 c c a c c b a | s0 | 9 | 2 | 3 | 2_3 | ( s0 , a , s0 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s0 )
( s0 , c , s1 )
( s1 , c , s1 ) |
56cee299-bda1-4034-8672-b98dc65335d4 | 4bfb04ad-18e5-499c-a5c6-b00fbd1ad9b3 | {"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": ["s1"]}, {"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":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( 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: a | s1 | 1 | 2 | 3 | 2_3 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s1 ) |
a7b1c76f-c0db-48c9-86a7-a25d12a051cb | 4bfb04ad-18e5-499c-a5c6-b00fbd1ad9b3 | {"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": ["s1"]}, {"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":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( 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: a a | s0 | 2 | 2 | 3 | 2_3 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s1 ) |
8aedf81d-311e-4224-8142-d9ccb3143271 | 4bfb04ad-18e5-499c-a5c6-b00fbd1ad9b3 | {"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": ["s1"]}, {"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":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( 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: a a a | s1 | 3 | 2 | 3 | 2_3 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s1 ) |
af620979-efa2-45a9-8782-3bcce3d98d02 | 4bfb04ad-18e5-499c-a5c6-b00fbd1ad9b3 | {"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": ["s1"]}, {"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":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( 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: a a a b | s1 | 4 | 2 | 3 | 2_3 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s1 ) |
d637ca8d-2b26-464c-a821-d2072b81db49 | 4bfb04ad-18e5-499c-a5c6-b00fbd1ad9b3 | {"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": ["s1"]}, {"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":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( 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: a a a b b | s1 | 5 | 2 | 3 | 2_3 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s1 ) |
71c8841c-1e05-40bc-835d-f7ff701083d0 | 4bfb04ad-18e5-499c-a5c6-b00fbd1ad9b3 | {"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": ["s1"]}, {"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":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( 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: a a a b 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 , s1 ) |
2a3c2aae-c27f-42c8-a5d6-371476ae29b1 | 4bfb04ad-18e5-499c-a5c6-b00fbd1ad9b3 | {"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": ["s1"]}, {"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":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( 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: a a a b b a a | s1 | 7 | 2 | 3 | 2_3 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s1 ) |
94a87b1c-a4b5-4b71-b229-9ae8599b6e6a | 4bfb04ad-18e5-499c-a5c6-b00fbd1ad9b3 | {"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": ["s1"]}, {"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":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( 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: a a a b b a a b | s1 | 8 | 2 | 3 | 2_3 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s1 ) |
699e3abf-b381-42a3-bc0e-19f305a7a007 | 4bfb04ad-18e5-499c-a5c6-b00fbd1ad9b3 | {"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": ["s1"]}, {"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":"s1","s1":"s1"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( 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: a a a b b a a b c | s1 | 9 | 2 | 3 | 2_3 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s1 ) |
18ef3d85-6df8-44e1-b6ab-0ece88594735 | 7f611983-50f0-44c3-8ed9-96bd5b505dff | {"states": ["s0", "s1"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s0","s1":"s1"},"d":{"s0":"s1","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s1 )
( s0 , d , s1 )
( s1 , d , s0 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: b | s1 | 1 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s1 )
( s0 , d , s1 )
( s1 , d , s0 ) |
4d96e0ee-0b9f-4cc3-a92e-3095d3d3ae21 | 7f611983-50f0-44c3-8ed9-96bd5b505dff | {"states": ["s0", "s1"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s0","s1":"s1"},"d":{"s0":"s1","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s1 )
( s0 , d , s1 )
( s1 , d , s0 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: b b | s1 | 2 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s1 )
( s0 , d , s1 )
( s1 , d , s0 ) |
d1d44b07-1754-4612-956e-89196fa1e7c2 | 7f611983-50f0-44c3-8ed9-96bd5b505dff | {"states": ["s0", "s1"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s0","s1":"s1"},"d":{"s0":"s1","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s1 )
( s0 , d , s1 )
( s1 , d , s0 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: b b a | s1 | 3 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s1 )
( s0 , d , s1 )
( s1 , d , s0 ) |
cb64447f-e393-46f3-ab10-d5e0d93b9e65 | 7f611983-50f0-44c3-8ed9-96bd5b505dff | {"states": ["s0", "s1"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s0","s1":"s1"},"d":{"s0":"s1","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s1 )
( s0 , d , s1 )
( s1 , d , s0 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: b b a c | s1 | 4 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s1 )
( s0 , d , s1 )
( s1 , d , s0 ) |
10eaa19f-7a94-4b2d-b406-73a361ef826e | 7f611983-50f0-44c3-8ed9-96bd5b505dff | {"states": ["s0", "s1"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s0","s1":"s1"},"d":{"s0":"s1","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s1 )
( s0 , d , s1 )
( s1 , d , s0 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: b b a c a | s1 | 5 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s1 )
( s0 , d , s1 )
( s1 , d , s0 ) |
91cc107c-bd23-401b-86a2-f1ffce63b109 | 7f611983-50f0-44c3-8ed9-96bd5b505dff | {"states": ["s0", "s1"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s0","s1":"s1"},"d":{"s0":"s1","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s1 )
( s0 , d , s1 )
( s1 , d , s0 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: b b a c a b | s1 | 6 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s1 )
( s0 , d , s1 )
( s1 , d , s0 ) |
6e54a7d5-b5f0-40bf-aa4b-f6a6442f56a1 | 7f611983-50f0-44c3-8ed9-96bd5b505dff | {"states": ["s0", "s1"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s0","s1":"s1"},"d":{"s0":"s1","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s1 )
( s0 , d , s1 )
( s1 , d , s0 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: b b a c a b d | s0 | 7 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s1 )
( s0 , d , s1 )
( s1 , d , s0 ) |
d5bf9bc9-8590-460f-9617-48ed2cdeac50 | 7f611983-50f0-44c3-8ed9-96bd5b505dff | {"states": ["s0", "s1"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s0","s1":"s1"},"d":{"s0":"s1","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s1 )
( s0 , d , s1 )
( s1 , d , s0 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: b b a c a b d c | s0 | 8 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s1 )
( s0 , d , s1 )
( s1 , d , s0 ) |
bad7bc38-2d29-4131-9367-ec40e122d878 | 7f611983-50f0-44c3-8ed9-96bd5b505dff | {"states": ["s0", "s1"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s0","s1":"s1"},"d":{"s0":"s1","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s1 )
( s0 , d , s1 )
( s1 , d , s0 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: b b a c a b d c c | s0 | 9 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s1 )
( s0 , d , s1 )
( s1 , d , s0 ) |
611f0812-82d0-4b7b-92c3-3e81532cb4d7 | 7b97ac07-e298-4733-b520-ca153a9af80a | {"states": ["s0", "s1"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s0","s1":"s0"},"d":{"s0":"s0","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s0 )
( s0 , d , s0 )
( s1 , d , s0 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: d | s0 | 1 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s0 )
( s0 , d , s0 )
( s1 , d , s0 ) |
580fdb80-f045-40d3-8ca7-74c8322e2cac | 7b97ac07-e298-4733-b520-ca153a9af80a | {"states": ["s0", "s1"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s0","s1":"s0"},"d":{"s0":"s0","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s0 )
( s0 , d , s0 )
( s1 , d , s0 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: d b | s1 | 2 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s0 )
( s0 , d , s0 )
( s1 , d , s0 ) |
3e443c05-4c6a-42d1-a964-a774d5248fe9 | 7b97ac07-e298-4733-b520-ca153a9af80a | {"states": ["s0", "s1"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s0","s1":"s0"},"d":{"s0":"s0","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s0 )
( s0 , d , s0 )
( s1 , d , s0 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: d b a | s1 | 3 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s0 )
( s0 , d , s0 )
( s1 , d , s0 ) |
e52858e1-8427-4490-91d1-d0e3b91de3ec | 7b97ac07-e298-4733-b520-ca153a9af80a | {"states": ["s0", "s1"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s0","s1":"s0"},"d":{"s0":"s0","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s0 )
( s0 , d , s0 )
( s1 , d , s0 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: d b a a | s1 | 4 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s0 )
( s0 , d , s0 )
( s1 , d , s0 ) |
339410c6-4cbb-4fb4-aac4-997c740e1299 | 7b97ac07-e298-4733-b520-ca153a9af80a | {"states": ["s0", "s1"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s0","s1":"s0"},"d":{"s0":"s0","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s0 )
( s0 , d , s0 )
( s1 , d , s0 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: d b a a a | s1 | 5 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s0 )
( s0 , d , s0 )
( s1 , d , s0 ) |
439e78d8-ef91-4f7d-b48d-841e201f31fa | 7b97ac07-e298-4733-b520-ca153a9af80a | {"states": ["s0", "s1"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s0","s1":"s0"},"d":{"s0":"s0","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s0 )
( s0 , d , s0 )
( s1 , d , s0 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: d b a a a c | s0 | 6 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s0 )
( s0 , d , s0 )
( s1 , d , s0 ) |
b6cab659-bc94-4c41-b6b5-3d2ecd032542 | 7b97ac07-e298-4733-b520-ca153a9af80a | {"states": ["s0", "s1"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s0","s1":"s0"},"d":{"s0":"s0","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s0 )
( s0 , d , s0 )
( s1 , d , s0 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: d b a a a c b | s1 | 7 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s0 )
( s0 , d , s0 )
( s1 , d , s0 ) |
e87d95e6-f308-48c1-9170-dcdd96bda067 | 7b97ac07-e298-4733-b520-ca153a9af80a | {"states": ["s0", "s1"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s0","s1":"s0"},"d":{"s0":"s0","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s0 )
( s0 , d , s0 )
( s1 , d , s0 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: d b a a a c b a | s1 | 8 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s0 )
( s0 , d , s0 )
( s1 , d , s0 ) |
0d3c2180-96f4-44be-81c3-47f3a7846bfc | 7b97ac07-e298-4733-b520-ca153a9af80a | {"states": ["s0", "s1"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s0","s1":"s0"},"d":{"s0":"s0","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s0 )
( s0 , d , s0 )
( s1 , d , s0 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: d b a a a c b a c | s0 | 9 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s0 )
( s0 , d , s0 )
( s1 , d , s0 ) |
9cef6dc3-cea6-4b25-9c6a-38eaa3b3040e | 9a7ced85-8d52-4e35-9a1b-d6c9baa50252 | {"states": ["s0", "s1"], "alphabets": "abcd", "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": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s0"},"c":{"s0":"s0","s1":"s1"},"d":{"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 , s1 )
( s0 , d , s0 )
( s1 , d , s0 )
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: d | s0 | 1 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 )
( s0 , c , s0 )
( s1 , c , s1 )
( s0 , d , s0 )
( s1 , d , s0 ) |
5b85f203-25a6-4143-8ac2-4f709be5298e | 9a7ced85-8d52-4e35-9a1b-d6c9baa50252 | {"states": ["s0", "s1"], "alphabets": "abcd", "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": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s0"},"c":{"s0":"s0","s1":"s1"},"d":{"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 , s1 )
( s0 , d , s0 )
( s1 , d , s0 )
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: d c | s0 | 2 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 )
( s0 , c , s0 )
( s1 , c , s1 )
( s0 , d , s0 )
( s1 , d , s0 ) |
bc81d6c6-9fdc-4b31-adec-a188ac57fcc2 | 9a7ced85-8d52-4e35-9a1b-d6c9baa50252 | {"states": ["s0", "s1"], "alphabets": "abcd", "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": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s0"},"c":{"s0":"s0","s1":"s1"},"d":{"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 , s1 )
( s0 , d , s0 )
( s1 , d , s0 )
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: d c a | s1 | 3 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 )
( s0 , c , s0 )
( s1 , c , s1 )
( s0 , d , s0 )
( s1 , d , s0 ) |
902c0fd1-9e43-40e8-ab73-9867b9a59ea9 | 9a7ced85-8d52-4e35-9a1b-d6c9baa50252 | {"states": ["s0", "s1"], "alphabets": "abcd", "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": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s0"},"c":{"s0":"s0","s1":"s1"},"d":{"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 , s1 )
( s0 , d , s0 )
( s1 , d , s0 )
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: d c a d | s0 | 4 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 )
( s0 , c , s0 )
( s1 , c , s1 )
( s0 , d , s0 )
( s1 , d , s0 ) |
764723d3-c145-47ad-a0a3-578552d42543 | 9a7ced85-8d52-4e35-9a1b-d6c9baa50252 | {"states": ["s0", "s1"], "alphabets": "abcd", "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": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s0"},"c":{"s0":"s0","s1":"s1"},"d":{"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 , s1 )
( s0 , d , s0 )
( s1 , d , s0 )
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: d c a d b | s1 | 5 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 )
( s0 , c , s0 )
( s1 , c , s1 )
( s0 , d , s0 )
( s1 , d , s0 ) |
a2c48721-1e9d-4a8a-a709-075b7ad3acd6 | 9a7ced85-8d52-4e35-9a1b-d6c9baa50252 | {"states": ["s0", "s1"], "alphabets": "abcd", "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": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s0"},"c":{"s0":"s0","s1":"s1"},"d":{"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 , s1 )
( s0 , d , s0 )
( s1 , d , s0 )
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: d c a d b d | s0 | 6 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 )
( s0 , c , s0 )
( s1 , c , s1 )
( s0 , d , s0 )
( s1 , d , s0 ) |
e5260828-f79d-4477-9c8e-3edd24b70227 | 9a7ced85-8d52-4e35-9a1b-d6c9baa50252 | {"states": ["s0", "s1"], "alphabets": "abcd", "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": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s0"},"c":{"s0":"s0","s1":"s1"},"d":{"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 , s1 )
( s0 , d , s0 )
( s1 , d , s0 )
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: d c a d b d b | s1 | 7 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 )
( s0 , c , s0 )
( s1 , c , s1 )
( s0 , d , s0 )
( s1 , d , s0 ) |
425d92d1-b096-4105-ace0-729dff95a3b8 | 9a7ced85-8d52-4e35-9a1b-d6c9baa50252 | {"states": ["s0", "s1"], "alphabets": "abcd", "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": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s0"},"c":{"s0":"s0","s1":"s1"},"d":{"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 , s1 )
( s0 , d , s0 )
( s1 , d , s0 )
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: d c a d b d b a | s1 | 8 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 )
( s0 , c , s0 )
( s1 , c , s1 )
( s0 , d , s0 )
( s1 , d , s0 ) |
92585b87-2f77-4185-a15c-4430220c146e | 9a7ced85-8d52-4e35-9a1b-d6c9baa50252 | {"states": ["s0", "s1"], "alphabets": "abcd", "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": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s0"},"c":{"s0":"s0","s1":"s1"},"d":{"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 , s1 )
( s0 , d , s0 )
( s1 , d , s0 )
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: d c a d b d b a a | s1 | 9 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s1 )
( s1 , b , s0 )
( s0 , c , s0 )
( s1 , c , s1 )
( s0 , d , s0 )
( s1 , d , s0 ) |
0c8af016-d272-4cf6-839a-c424f9820763 | a31dad16-3dc3-4d6e-af5f-44a33f1c543b | {"states": ["s0", "s1"], "alphabets": "abcd", "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": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s0","s1":"s0"},"d":{"s0":"s1","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 , s0 )
( s0 , d , s1 )
( s1 , d , s1 )
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: c | s0 | 1 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s0 )
( s0 , d , s1 )
( s1 , d , s1 ) |
563bbd8e-388f-41a5-ab6e-d2b9150b0ec2 | a31dad16-3dc3-4d6e-af5f-44a33f1c543b | {"states": ["s0", "s1"], "alphabets": "abcd", "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": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s0","s1":"s0"},"d":{"s0":"s1","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 , s0 )
( s0 , d , s1 )
( s1 , d , s1 )
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: c b | s1 | 2 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s0 )
( s0 , d , s1 )
( s1 , d , s1 ) |
c70440a6-e934-4312-b214-9a7189047f51 | a31dad16-3dc3-4d6e-af5f-44a33f1c543b | {"states": ["s0", "s1"], "alphabets": "abcd", "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": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s0","s1":"s0"},"d":{"s0":"s1","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 , s0 )
( s0 , d , s1 )
( s1 , d , s1 )
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: c b d | s1 | 3 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s0 )
( s0 , d , s1 )
( s1 , d , s1 ) |
afb83f6d-54ed-452f-aa19-0809faf088e9 | a31dad16-3dc3-4d6e-af5f-44a33f1c543b | {"states": ["s0", "s1"], "alphabets": "abcd", "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": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s0","s1":"s0"},"d":{"s0":"s1","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 , s0 )
( s0 , d , s1 )
( s1 , d , s1 )
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: c b d a | s0 | 4 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s0 )
( s0 , d , s1 )
( s1 , d , s1 ) |
7aa280d3-35ed-4f05-a84d-ef214cba5b0e | a31dad16-3dc3-4d6e-af5f-44a33f1c543b | {"states": ["s0", "s1"], "alphabets": "abcd", "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": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s0","s1":"s0"},"d":{"s0":"s1","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 , s0 )
( s0 , d , s1 )
( s1 , d , s1 )
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: c b d a d | s1 | 5 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s0 )
( s0 , d , s1 )
( s1 , d , s1 ) |
1a87ff8c-01db-400f-b3ca-661ea7599e18 | a31dad16-3dc3-4d6e-af5f-44a33f1c543b | {"states": ["s0", "s1"], "alphabets": "abcd", "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": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s0","s1":"s0"},"d":{"s0":"s1","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 , s0 )
( s0 , d , s1 )
( s1 , d , s1 )
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: c b d a d b | s1 | 6 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s0 )
( s0 , d , s1 )
( s1 , d , s1 ) |
7cad4f3e-a2d6-4669-ad0f-8e5feeeea86b | a31dad16-3dc3-4d6e-af5f-44a33f1c543b | {"states": ["s0", "s1"], "alphabets": "abcd", "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": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s0","s1":"s0"},"d":{"s0":"s1","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 , s0 )
( s0 , d , s1 )
( s1 , d , s1 )
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: c b d a d b a | s0 | 7 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s0 )
( s0 , d , s1 )
( s1 , d , s1 ) |
fca9bd49-e3c4-4f3a-8c08-d9a7471a5dea | a31dad16-3dc3-4d6e-af5f-44a33f1c543b | {"states": ["s0", "s1"], "alphabets": "abcd", "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": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s0","s1":"s0"},"d":{"s0":"s1","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 , s0 )
( s0 , d , s1 )
( s1 , d , s1 )
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: c b d a d b a b | s1 | 8 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s0 )
( s0 , d , s1 )
( s1 , d , s1 ) |
b3c1ef67-7bcd-413d-965b-36af7e6f87dc | a31dad16-3dc3-4d6e-af5f-44a33f1c543b | {"states": ["s0", "s1"], "alphabets": "abcd", "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": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s0","s1":"s0"},"d":{"s0":"s1","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 , s0 )
( s0 , d , s1 )
( s1 , d , s1 )
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: c b d a d b a b d | s1 | 9 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s0 )
( s0 , d , s1 )
( s1 , d , s1 ) |
2b84a74f-7317-4b7a-9d93-54510b0a0d79 | 1a41b8ce-0304-425f-9102-604e8a0632fa | {"states": ["s0", "s1"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s0","s1":"s1"},"d":{"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 )
( s0 , d , s0 )
( s1 , d , s1 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: c | s0 | 1 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s1 )
( s0 , d , s0 )
( s1 , d , s1 ) |
6632c6b6-4784-4e3e-a0f7-c9f1368f2ad5 | 1a41b8ce-0304-425f-9102-604e8a0632fa | {"states": ["s0", "s1"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s0","s1":"s1"},"d":{"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 )
( s0 , d , s0 )
( s1 , d , s1 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: c d | s0 | 2 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s1 )
( s0 , d , s0 )
( s1 , d , s1 ) |
4ca102f0-7dcd-407d-89c8-39d203071a60 | 1a41b8ce-0304-425f-9102-604e8a0632fa | {"states": ["s0", "s1"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s0","s1":"s1"},"d":{"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 )
( s0 , d , s0 )
( s1 , d , s1 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: c d b | s1 | 3 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s1 )
( s0 , d , s0 )
( s1 , d , s1 ) |
f7f19250-5118-466a-b7fe-59401beb1fe3 | 1a41b8ce-0304-425f-9102-604e8a0632fa | {"states": ["s0", "s1"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s0","s1":"s1"},"d":{"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 )
( s0 , d , s0 )
( s1 , d , s1 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: c d b a | s0 | 4 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s1 )
( s0 , d , s0 )
( s1 , d , s1 ) |
ede1132e-c73f-4eb5-b4c6-77f27f826021 | 1a41b8ce-0304-425f-9102-604e8a0632fa | {"states": ["s0", "s1"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s0","s1":"s1"},"d":{"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 )
( s0 , d , s0 )
( s1 , d , s1 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: c d b a a | s1 | 5 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s1 )
( s0 , d , s0 )
( s1 , d , s1 ) |
e0c8cdcb-4a2f-47f4-87d7-d9be870de703 | 1a41b8ce-0304-425f-9102-604e8a0632fa | {"states": ["s0", "s1"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s0","s1":"s1"},"d":{"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 )
( s0 , d , s0 )
( s1 , d , s1 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: c d b a a b | s1 | 6 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s1 )
( s0 , d , s0 )
( s1 , d , s1 ) |
79e4e54c-da76-4c7c-8b6d-a68edea1eee8 | 1a41b8ce-0304-425f-9102-604e8a0632fa | {"states": ["s0", "s1"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s0","s1":"s1"},"d":{"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 )
( s0 , d , s0 )
( s1 , d , s1 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: c d b a a b d | s1 | 7 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s1 )
( s0 , d , s0 )
( s1 , d , s1 ) |
2d5741a0-858b-4aa2-be69-e3e9ac8704e3 | 1a41b8ce-0304-425f-9102-604e8a0632fa | {"states": ["s0", "s1"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s0","s1":"s1"},"d":{"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 )
( s0 , d , s0 )
( s1 , d , s1 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: c d b a a b d b | s1 | 8 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s1 )
( s0 , d , s0 )
( s1 , d , s1 ) |
35a22be7-ea2e-4439-b2b7-033e407202e4 | 1a41b8ce-0304-425f-9102-604e8a0632fa | {"states": ["s0", "s1"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s1"]}]} | 2 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s0","s1":"s1"},"d":{"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 )
( s0 , d , s0 )
( s1 , d , s1 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: c d b a a b d b d | s1 | 9 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s0 )
( s1 , c , s1 )
( s0 , d , s0 )
( s1 , d , s1 ) |
ff6b3e4b-ef13-4e94-8b62-ba9cc7c429e6 | 5a6b9393-12d1-4e31-b0ab-6eba2706d2cd | {"states": ["s0", "s1"], "alphabets": "abcd", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s1"},"c":{"s0":"s1","s1":"s0"},"d":{"s0":"s0","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s0 )
( s0 , d , s0 )
( s1 , d , s0 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: c | s1 | 1 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s0 )
( s0 , d , s0 )
( s1 , d , s0 ) |
fd405805-f3ef-4b0d-a15a-6745e5343a4e | 5a6b9393-12d1-4e31-b0ab-6eba2706d2cd | {"states": ["s0", "s1"], "alphabets": "abcd", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s1"},"c":{"s0":"s1","s1":"s0"},"d":{"s0":"s0","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s0 )
( s0 , d , s0 )
( s1 , d , s0 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: c c | s0 | 2 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s0 )
( s0 , d , s0 )
( s1 , d , s0 ) |
c4abceda-9d0b-4df9-a49f-af64ae52f3ba | 5a6b9393-12d1-4e31-b0ab-6eba2706d2cd | {"states": ["s0", "s1"], "alphabets": "abcd", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s1"},"c":{"s0":"s1","s1":"s0"},"d":{"s0":"s0","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s0 )
( s0 , d , s0 )
( s1 , d , s0 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: c c b | s0 | 3 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s0 )
( s0 , d , s0 )
( s1 , d , s0 ) |
99c9dfb2-a684-4d86-a992-cf3245abbd0e | 5a6b9393-12d1-4e31-b0ab-6eba2706d2cd | {"states": ["s0", "s1"], "alphabets": "abcd", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s1"},"c":{"s0":"s1","s1":"s0"},"d":{"s0":"s0","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s0 )
( s0 , d , s0 )
( s1 , d , s0 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: c c b c | s1 | 4 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s0 )
( s0 , d , s0 )
( s1 , d , s0 ) |
525eff52-4801-4a53-9746-c78fba5c3b33 | 5a6b9393-12d1-4e31-b0ab-6eba2706d2cd | {"states": ["s0", "s1"], "alphabets": "abcd", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s1"},"c":{"s0":"s1","s1":"s0"},"d":{"s0":"s0","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s0 )
( s0 , d , s0 )
( s1 , d , s0 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: c c b c b | s1 | 5 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s0 )
( s0 , d , s0 )
( s1 , d , s0 ) |
016353a6-3bb1-4848-a728-b5b06feb0549 | 5a6b9393-12d1-4e31-b0ab-6eba2706d2cd | {"states": ["s0", "s1"], "alphabets": "abcd", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s1"},"c":{"s0":"s1","s1":"s0"},"d":{"s0":"s0","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s0 )
( s0 , d , s0 )
( s1 , d , s0 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: c c b c b d | s0 | 6 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s0 )
( s0 , d , s0 )
( s1 , d , s0 ) |
8062f5db-a2dc-4b6c-ac11-09f362e2edc1 | 5a6b9393-12d1-4e31-b0ab-6eba2706d2cd | {"states": ["s0", "s1"], "alphabets": "abcd", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s1"},"c":{"s0":"s1","s1":"s0"},"d":{"s0":"s0","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s0 )
( s0 , d , s0 )
( s1 , d , s0 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: c c b c b d d | s0 | 7 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s0 )
( s0 , d , s0 )
( s1 , d , s0 ) |
9efee724-a43a-4dfe-b58c-c040c6b76a09 | 5a6b9393-12d1-4e31-b0ab-6eba2706d2cd | {"states": ["s0", "s1"], "alphabets": "abcd", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s1"},"c":{"s0":"s1","s1":"s0"},"d":{"s0":"s0","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s0 )
( s0 , d , s0 )
( s1 , d , s0 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: c c b c b d d d | s0 | 8 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s0 )
( s0 , d , s0 )
( s1 , d , s0 ) |
52f38a94-81f1-47a4-a650-43710bb333c1 | 5a6b9393-12d1-4e31-b0ab-6eba2706d2cd | {"states": ["s0", "s1"], "alphabets": "abcd", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s1"},"c":{"s0":"s1","s1":"s0"},"d":{"s0":"s0","s1":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s0 )
( s0 , d , s0 )
( s1 , d , s0 )
With the initial state: s0, and accepting states: ['s0'],
What will be the state after reading the following input: c c b c b d d d d | s0 | 9 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s1 )
( s0 , b , s0 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s0 )
( s0 , d , s0 )
( s1 , d , s0 ) |
91d026c5-a546-41c3-85f5-6d78f8aa71dc | 113e40ec-1dea-44b2-997f-19fa66676d51 | {"states": ["s0", "s2"], "alphabets": "abcd", "accepting_states": ["s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s2","s2":"s2"},"b":{"s0":"s2","s2":"s0"},"c":{"s0":"s2","s2":"s2"},"d":{"s0":"s2","s2":"s0"}} | Given the following FSM transition rules:
( s0 , a , s2 )
( s2 , a , s2 )
( s0 , b , s2 )
( s2 , b , s0 )
( s0 , c , s2 )
( s2 , c , s2 )
( s0 , d , s2 )
( s2 , d , s0 )
With the initial state: s0, and accepting states: ['s2'],
What will be the state after reading the following input: b | s2 | 1 | 2 | 4 | 2_4 | ( s0 , a , s2 )
( s2 , a , s2 )
( s0 , b , s2 )
( s2 , b , s0 )
( s0 , c , s2 )
( s2 , c , s2 )
( s0 , d , s2 )
( s2 , d , s0 ) |
449e7779-535c-47f4-9e23-93fd8c580bd9 | 113e40ec-1dea-44b2-997f-19fa66676d51 | {"states": ["s0", "s2"], "alphabets": "abcd", "accepting_states": ["s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s2","s2":"s2"},"b":{"s0":"s2","s2":"s0"},"c":{"s0":"s2","s2":"s2"},"d":{"s0":"s2","s2":"s0"}} | Given the following FSM transition rules:
( s0 , a , s2 )
( s2 , a , s2 )
( s0 , b , s2 )
( s2 , b , s0 )
( s0 , c , s2 )
( s2 , c , s2 )
( s0 , d , s2 )
( s2 , d , s0 )
With the initial state: s0, and accepting states: ['s2'],
What will be the state after reading the following input: b c | s2 | 2 | 2 | 4 | 2_4 | ( s0 , a , s2 )
( s2 , a , s2 )
( s0 , b , s2 )
( s2 , b , s0 )
( s0 , c , s2 )
( s2 , c , s2 )
( s0 , d , s2 )
( s2 , d , s0 ) |
c0b6871f-1719-4fa9-bf88-e258378e3094 | 113e40ec-1dea-44b2-997f-19fa66676d51 | {"states": ["s0", "s2"], "alphabets": "abcd", "accepting_states": ["s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s2","s2":"s2"},"b":{"s0":"s2","s2":"s0"},"c":{"s0":"s2","s2":"s2"},"d":{"s0":"s2","s2":"s0"}} | Given the following FSM transition rules:
( s0 , a , s2 )
( s2 , a , s2 )
( s0 , b , s2 )
( s2 , b , s0 )
( s0 , c , s2 )
( s2 , c , s2 )
( s0 , d , s2 )
( s2 , d , s0 )
With the initial state: s0, and accepting states: ['s2'],
What will be the state after reading the following input: b c a | s2 | 3 | 2 | 4 | 2_4 | ( s0 , a , s2 )
( s2 , a , s2 )
( s0 , b , s2 )
( s2 , b , s0 )
( s0 , c , s2 )
( s2 , c , s2 )
( s0 , d , s2 )
( s2 , d , s0 ) |
0e4da182-b1a0-4255-8cf7-5a2405b92e27 | 113e40ec-1dea-44b2-997f-19fa66676d51 | {"states": ["s0", "s2"], "alphabets": "abcd", "accepting_states": ["s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s2","s2":"s2"},"b":{"s0":"s2","s2":"s0"},"c":{"s0":"s2","s2":"s2"},"d":{"s0":"s2","s2":"s0"}} | Given the following FSM transition rules:
( s0 , a , s2 )
( s2 , a , s2 )
( s0 , b , s2 )
( s2 , b , s0 )
( s0 , c , s2 )
( s2 , c , s2 )
( s0 , d , s2 )
( s2 , d , s0 )
With the initial state: s0, and accepting states: ['s2'],
What will be the state after reading the following input: b c a b | s0 | 4 | 2 | 4 | 2_4 | ( s0 , a , s2 )
( s2 , a , s2 )
( s0 , b , s2 )
( s2 , b , s0 )
( s0 , c , s2 )
( s2 , c , s2 )
( s0 , d , s2 )
( s2 , d , s0 ) |
2d87be87-c4a5-4c6f-81b5-1ae9ecd7f606 | 113e40ec-1dea-44b2-997f-19fa66676d51 | {"states": ["s0", "s2"], "alphabets": "abcd", "accepting_states": ["s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s2","s2":"s2"},"b":{"s0":"s2","s2":"s0"},"c":{"s0":"s2","s2":"s2"},"d":{"s0":"s2","s2":"s0"}} | Given the following FSM transition rules:
( s0 , a , s2 )
( s2 , a , s2 )
( s0 , b , s2 )
( s2 , b , s0 )
( s0 , c , s2 )
( s2 , c , s2 )
( s0 , d , s2 )
( s2 , d , s0 )
With the initial state: s0, and accepting states: ['s2'],
What will be the state after reading the following input: b c a b c | s2 | 5 | 2 | 4 | 2_4 | ( s0 , a , s2 )
( s2 , a , s2 )
( s0 , b , s2 )
( s2 , b , s0 )
( s0 , c , s2 )
( s2 , c , s2 )
( s0 , d , s2 )
( s2 , d , s0 ) |
655755d9-47ee-468a-8349-6fed3e6493df | 113e40ec-1dea-44b2-997f-19fa66676d51 | {"states": ["s0", "s2"], "alphabets": "abcd", "accepting_states": ["s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s2","s2":"s2"},"b":{"s0":"s2","s2":"s0"},"c":{"s0":"s2","s2":"s2"},"d":{"s0":"s2","s2":"s0"}} | Given the following FSM transition rules:
( s0 , a , s2 )
( s2 , a , s2 )
( s0 , b , s2 )
( s2 , b , s0 )
( s0 , c , s2 )
( s2 , c , s2 )
( s0 , d , s2 )
( s2 , d , s0 )
With the initial state: s0, and accepting states: ['s2'],
What will be the state after reading the following input: b c a b c b | s0 | 6 | 2 | 4 | 2_4 | ( s0 , a , s2 )
( s2 , a , s2 )
( s0 , b , s2 )
( s2 , b , s0 )
( s0 , c , s2 )
( s2 , c , s2 )
( s0 , d , s2 )
( s2 , d , s0 ) |
31d45933-6c6f-4e6e-9534-535ff391f859 | 113e40ec-1dea-44b2-997f-19fa66676d51 | {"states": ["s0", "s2"], "alphabets": "abcd", "accepting_states": ["s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s2","s2":"s2"},"b":{"s0":"s2","s2":"s0"},"c":{"s0":"s2","s2":"s2"},"d":{"s0":"s2","s2":"s0"}} | Given the following FSM transition rules:
( s0 , a , s2 )
( s2 , a , s2 )
( s0 , b , s2 )
( s2 , b , s0 )
( s0 , c , s2 )
( s2 , c , s2 )
( s0 , d , s2 )
( s2 , d , s0 )
With the initial state: s0, and accepting states: ['s2'],
What will be the state after reading the following input: b c a b c b b | s2 | 7 | 2 | 4 | 2_4 | ( s0 , a , s2 )
( s2 , a , s2 )
( s0 , b , s2 )
( s2 , b , s0 )
( s0 , c , s2 )
( s2 , c , s2 )
( s0 , d , s2 )
( s2 , d , s0 ) |
3027f5ec-2b06-40c1-a736-567083549e14 | 113e40ec-1dea-44b2-997f-19fa66676d51 | {"states": ["s0", "s2"], "alphabets": "abcd", "accepting_states": ["s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s2","s2":"s2"},"b":{"s0":"s2","s2":"s0"},"c":{"s0":"s2","s2":"s2"},"d":{"s0":"s2","s2":"s0"}} | Given the following FSM transition rules:
( s0 , a , s2 )
( s2 , a , s2 )
( s0 , b , s2 )
( s2 , b , s0 )
( s0 , c , s2 )
( s2 , c , s2 )
( s0 , d , s2 )
( s2 , d , s0 )
With the initial state: s0, and accepting states: ['s2'],
What will be the state after reading the following input: b c a b c b b a | s2 | 8 | 2 | 4 | 2_4 | ( s0 , a , s2 )
( s2 , a , s2 )
( s0 , b , s2 )
( s2 , b , s0 )
( s0 , c , s2 )
( s2 , c , s2 )
( s0 , d , s2 )
( s2 , d , s0 ) |
cc67315b-a2a7-4f95-bbdb-766f09303747 | 113e40ec-1dea-44b2-997f-19fa66676d51 | {"states": ["s0", "s2"], "alphabets": "abcd", "accepting_states": ["s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s2","s2":"s2"},"b":{"s0":"s2","s2":"s0"},"c":{"s0":"s2","s2":"s2"},"d":{"s0":"s2","s2":"s0"}} | Given the following FSM transition rules:
( s0 , a , s2 )
( s2 , a , s2 )
( s0 , b , s2 )
( s2 , b , s0 )
( s0 , c , s2 )
( s2 , c , s2 )
( s0 , d , s2 )
( s2 , d , s0 )
With the initial state: s0, and accepting states: ['s2'],
What will be the state after reading the following input: b c a b c b b a b | s0 | 9 | 2 | 4 | 2_4 | ( s0 , a , s2 )
( s2 , a , s2 )
( s0 , b , s2 )
( s2 , b , s0 )
( s0 , c , s2 )
( s2 , c , s2 )
( s0 , d , s2 )
( s2 , d , s0 ) |
7b0c4a1c-bd29-4f50-a119-3d26965ebf2f | 4479232a-27b1-4cb5-abb0-12d08fc771c3 | {"states": ["s0", "s1"], "alphabets": "abcd", "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": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s1","s1":"s0"},"d":{"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 )
( s0 , d , s1 )
( s1 , d , 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 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s0 )
( s0 , d , s1 )
( s1 , d , s0 ) |
89d99fe5-b79c-41a8-b74e-d13545577a81 | 4479232a-27b1-4cb5-abb0-12d08fc771c3 | {"states": ["s0", "s1"], "alphabets": "abcd", "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": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s1","s1":"s0"},"d":{"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 )
( s0 , d , s1 )
( s1 , d , s0 )
With the initial state: s0, and accepting states: ['s1', 's0'],
What will be the state after reading the following input: b b | s1 | 2 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s0 )
( s0 , d , s1 )
( s1 , d , s0 ) |
4745e283-c38c-4975-9ae3-1a3b1c1d2f2f | 4479232a-27b1-4cb5-abb0-12d08fc771c3 | {"states": ["s0", "s1"], "alphabets": "abcd", "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": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s1","s1":"s0"},"d":{"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 )
( s0 , d , s1 )
( s1 , d , s0 )
With the initial state: s0, and accepting states: ['s1', 's0'],
What will be the state after reading the following input: b b c | s0 | 3 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s0 )
( s0 , d , s1 )
( s1 , d , s0 ) |
16c3742e-67d5-43f8-aa7f-cbfa1515d66c | 4479232a-27b1-4cb5-abb0-12d08fc771c3 | {"states": ["s0", "s1"], "alphabets": "abcd", "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": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s1","s1":"s0"},"d":{"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 )
( s0 , d , s1 )
( s1 , d , s0 )
With the initial state: s0, and accepting states: ['s1', 's0'],
What will be the state after reading the following input: b b c d | s1 | 4 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s0 )
( s0 , d , s1 )
( s1 , d , s0 ) |
8bfdbf98-9e28-40d0-a7f2-33daa1c13b8e | 4479232a-27b1-4cb5-abb0-12d08fc771c3 | {"states": ["s0", "s1"], "alphabets": "abcd", "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": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s1","s1":"s0"},"d":{"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 )
( s0 , d , s1 )
( s1 , d , s0 )
With the initial state: s0, and accepting states: ['s1', 's0'],
What will be the state after reading the following input: b b c d c | s0 | 5 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s0 )
( s0 , d , s1 )
( s1 , d , s0 ) |
9925b0ba-37e8-4de0-94ea-3d07c1d356c8 | 4479232a-27b1-4cb5-abb0-12d08fc771c3 | {"states": ["s0", "s1"], "alphabets": "abcd", "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": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s1","s1":"s0"},"d":{"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 )
( s0 , d , s1 )
( s1 , d , s0 )
With the initial state: s0, and accepting states: ['s1', 's0'],
What will be the state after reading the following input: b b c d c c | s1 | 6 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s0 )
( s0 , d , s1 )
( s1 , d , s0 ) |
b3953542-3115-4ee8-aa42-7e9412122b2f | 4479232a-27b1-4cb5-abb0-12d08fc771c3 | {"states": ["s0", "s1"], "alphabets": "abcd", "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": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s1","s1":"s0"},"d":{"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 )
( s0 , d , s1 )
( s1 , d , s0 )
With the initial state: s0, and accepting states: ['s1', 's0'],
What will be the state after reading the following input: b b c d c c c | s0 | 7 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s0 )
( s0 , d , s1 )
( s1 , d , s0 ) |
db6c37fc-b019-429a-871f-3c137a10a75d | 4479232a-27b1-4cb5-abb0-12d08fc771c3 | {"states": ["s0", "s1"], "alphabets": "abcd", "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": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s1","s1":"s0"},"d":{"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 )
( s0 , d , s1 )
( s1 , d , s0 )
With the initial state: s0, and accepting states: ['s1', 's0'],
What will be the state after reading the following input: b b c d c c c c | s1 | 8 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s0 )
( s0 , d , s1 )
( s1 , d , s0 ) |
a2b09479-b64c-49fd-81bf-40ed9e5e3bb1 | 4479232a-27b1-4cb5-abb0-12d08fc771c3 | {"states": ["s0", "s1"], "alphabets": "abcd", "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": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s1","s1":"s0"},"d":{"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 )
( s0 , d , s1 )
( s1 , d , s0 )
With the initial state: s0, and accepting states: ['s1', 's0'],
What will be the state after reading the following input: b b c d c c c c a | s0 | 9 | 2 | 4 | 2_4 | ( s0 , a , s1 )
( s1 , a , s0 )
( s0 , b , s1 )
( s1 , b , s1 )
( s0 , c , s1 )
( s1 , c , s0 )
( s0 , d , s1 )
( s1 , d , s0 ) |
7aaa897f-dde4-44aa-8002-f5aa81a11ecc | f38cbd6b-3df4-432d-ab8b-4d6faccda99a | {"states": ["s0", "s1", "s12"], "alphabets": "a", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s12"]}, {"fromState": "s12", "symbol": "a", "toStates": ["s0"]}]} | 4 | {"a":{"s0":"s1","s1":"s12","s12":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s12 )
( s12 , a , s0 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: a | s1 | 1 | 3 | 1 | 3_1 | ( s0 , a , s1 )
( s1 , a , s12 )
( s12 , a , s0 ) |
90f58699-e9e2-47e5-ae65-342f8ffcd8c1 | f38cbd6b-3df4-432d-ab8b-4d6faccda99a | {"states": ["s0", "s1", "s12"], "alphabets": "a", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s12"]}, {"fromState": "s12", "symbol": "a", "toStates": ["s0"]}]} | 4 | {"a":{"s0":"s1","s1":"s12","s12":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s12 )
( s12 , a , s0 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: a a | s12 | 2 | 3 | 1 | 3_1 | ( s0 , a , s1 )
( s1 , a , s12 )
( s12 , a , s0 ) |
7a0c38d1-de6e-4703-920a-aa71efd530c5 | f38cbd6b-3df4-432d-ab8b-4d6faccda99a | {"states": ["s0", "s1", "s12"], "alphabets": "a", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s12"]}, {"fromState": "s12", "symbol": "a", "toStates": ["s0"]}]} | 4 | {"a":{"s0":"s1","s1":"s12","s12":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s12 )
( s12 , a , s0 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: a a a | s0 | 3 | 3 | 1 | 3_1 | ( s0 , a , s1 )
( s1 , a , s12 )
( s12 , a , s0 ) |
d772d4b7-456e-47b0-99c8-aff739d77b55 | f38cbd6b-3df4-432d-ab8b-4d6faccda99a | {"states": ["s0", "s1", "s12"], "alphabets": "a", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s12"]}, {"fromState": "s12", "symbol": "a", "toStates": ["s0"]}]} | 4 | {"a":{"s0":"s1","s1":"s12","s12":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s12 )
( s12 , a , s0 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: a a a a | s1 | 4 | 3 | 1 | 3_1 | ( s0 , a , s1 )
( s1 , a , s12 )
( s12 , a , s0 ) |
ae02862c-5a20-4f89-bdcc-e6f9a99de5e5 | f38cbd6b-3df4-432d-ab8b-4d6faccda99a | {"states": ["s0", "s1", "s12"], "alphabets": "a", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s12"]}, {"fromState": "s12", "symbol": "a", "toStates": ["s0"]}]} | 4 | {"a":{"s0":"s1","s1":"s12","s12":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s12 )
( s12 , a , s0 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: a a a a a | s12 | 5 | 3 | 1 | 3_1 | ( s0 , a , s1 )
( s1 , a , s12 )
( s12 , a , s0 ) |
6bf7dfa4-31fd-427a-b7cb-84153ccdd86e | f38cbd6b-3df4-432d-ab8b-4d6faccda99a | {"states": ["s0", "s1", "s12"], "alphabets": "a", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s12"]}, {"fromState": "s12", "symbol": "a", "toStates": ["s0"]}]} | 4 | {"a":{"s0":"s1","s1":"s12","s12":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s12 )
( s12 , a , s0 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: a a a a a a | s0 | 6 | 3 | 1 | 3_1 | ( s0 , a , s1 )
( s1 , a , s12 )
( s12 , a , s0 ) |
e534e3f7-7365-4c2b-8f46-f58e5418fc8b | f38cbd6b-3df4-432d-ab8b-4d6faccda99a | {"states": ["s0", "s1", "s12"], "alphabets": "a", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s12"]}, {"fromState": "s12", "symbol": "a", "toStates": ["s0"]}]} | 4 | {"a":{"s0":"s1","s1":"s12","s12":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s12 )
( s12 , a , s0 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: a a a a a a a | s1 | 7 | 3 | 1 | 3_1 | ( s0 , a , s1 )
( s1 , a , s12 )
( s12 , a , s0 ) |
33fa7d60-240b-4b17-9f87-237e7c69f100 | f38cbd6b-3df4-432d-ab8b-4d6faccda99a | {"states": ["s0", "s1", "s12"], "alphabets": "a", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s12"]}, {"fromState": "s12", "symbol": "a", "toStates": ["s0"]}]} | 4 | {"a":{"s0":"s1","s1":"s12","s12":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s12 )
( s12 , a , s0 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: a a a a a a a a | s12 | 8 | 3 | 1 | 3_1 | ( s0 , a , s1 )
( s1 , a , s12 )
( s12 , a , s0 ) |
fb24192a-298e-48a9-be1f-89236b16f7ce | f38cbd6b-3df4-432d-ab8b-4d6faccda99a | {"states": ["s0", "s1", "s12"], "alphabets": "a", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s12"]}, {"fromState": "s12", "symbol": "a", "toStates": ["s0"]}]} | 4 | {"a":{"s0":"s1","s1":"s12","s12":"s0"}} | Given the following FSM transition rules:
( s0 , a , s1 )
( s1 , a , s12 )
( s12 , a , s0 )
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: a a a a a a a a a | s0 | 9 | 3 | 1 | 3_1 | ( s0 , a , s1 )
( s1 , a , s12 )
( s12 , a , s0 ) |
68a4f678-3790-465a-bce8-23762658028d | 3298a7f9-6a79-4504-a630-012925e60771 | {"states": ["s0", "s3", "s5"], "alphabets": "a", "accepting_states": ["s5", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s3","s3":"s5","s5":"s0"}} | Given the following FSM transition rules:
( s0 , a , s3 )
( s3 , a , s5 )
( s5 , a , s0 )
With the initial state: s0, and accepting states: ['s5', 's0'],
What will be the state after reading the following input: a | s3 | 1 | 3 | 1 | 3_1 | ( s0 , a , s3 )
( s3 , a , s5 )
( s5 , a , s0 ) |
387fbefc-0037-41cb-838b-f4cdc757a285 | 3298a7f9-6a79-4504-a630-012925e60771 | {"states": ["s0", "s3", "s5"], "alphabets": "a", "accepting_states": ["s5", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s3","s3":"s5","s5":"s0"}} | Given the following FSM transition rules:
( s0 , a , s3 )
( s3 , a , s5 )
( s5 , a , s0 )
With the initial state: s0, and accepting states: ['s5', 's0'],
What will be the state after reading the following input: a a | s5 | 2 | 3 | 1 | 3_1 | ( s0 , a , s3 )
( s3 , a , s5 )
( s5 , a , s0 ) |
2740a90c-c7c4-400b-85ee-c435100010da | 3298a7f9-6a79-4504-a630-012925e60771 | {"states": ["s0", "s3", "s5"], "alphabets": "a", "accepting_states": ["s5", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s0"]}]} | 2 | {"a":{"s0":"s3","s3":"s5","s5":"s0"}} | Given the following FSM transition rules:
( s0 , a , s3 )
( s3 , a , s5 )
( s5 , a , s0 )
With the initial state: s0, and accepting states: ['s5', 's0'],
What will be the state after reading the following input: a a a | s0 | 3 | 3 | 1 | 3_1 | ( s0 , a , s3 )
( s3 , a , s5 )
( s5 , a , s0 ) |