query_id
stringlengths 36
36
| fsm_id
stringclasses 25
values | fsm_json
stringclasses 21
values | difficulty_level
int64 1
4
| transition_matrix
stringclasses 21
values | query
stringlengths 161
530
| answer
stringclasses 8
values | substring_index
int64 1
20
| number_of_states
int64 1
8
| number_of_alphabets
int64 1
8
| state_alpha_combo
stringclasses 19
values |
---|---|---|---|---|---|---|---|---|---|---|
34938555-e038-4526-86bf-239681058cc6
|
e1bcc645-0979-4ab9-9bfb-010109e1d194
|
{"states": ["s0", "s1"], "alphabets": "abcdefgh", "accepting_states": ["s1"], "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": "s0", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "h", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "f", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "h", "toStates": ["s0"]}]}
| 3 |
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"},"d":{"s0":"s0","s1":"s0"},"e":{"s0":"s1","s1":"s1"},"f":{"s0":"s0","s1":"s0"},"g":{"s0":"s0","s1":"s0"},"h":{"s0":"s1","s1":"s0"}}
|
Given the following FSM:
a b c d e f g h
s0 s1 s0 s1 s0 s1 s0 s0 s1
s1 s0 s0 s1 s0 s1 s0 s0 s0
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: g ?
|
s0
| 1 | 2 | 8 |
2_8
|
ebc30beb-376e-4a5f-8480-0e08659733ce
|
e1bcc645-0979-4ab9-9bfb-010109e1d194
|
{"states": ["s0", "s1"], "alphabets": "abcdefgh", "accepting_states": ["s1"], "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": "s0", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "h", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "f", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "h", "toStates": ["s0"]}]}
| 3 |
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"},"d":{"s0":"s0","s1":"s0"},"e":{"s0":"s1","s1":"s1"},"f":{"s0":"s0","s1":"s0"},"g":{"s0":"s0","s1":"s0"},"h":{"s0":"s1","s1":"s0"}}
|
Given the following FSM:
a b c d e f g h
s0 s1 s0 s1 s0 s1 s0 s0 s1
s1 s0 s0 s1 s0 s1 s0 s0 s0
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: g h ?
|
s1
| 2 | 2 | 8 |
2_8
|
acf80b81-626a-40a1-ac8e-164815c8160d
|
e1bcc645-0979-4ab9-9bfb-010109e1d194
|
{"states": ["s0", "s1"], "alphabets": "abcdefgh", "accepting_states": ["s1"], "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": "s0", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "h", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "f", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "h", "toStates": ["s0"]}]}
| 3 |
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"},"d":{"s0":"s0","s1":"s0"},"e":{"s0":"s1","s1":"s1"},"f":{"s0":"s0","s1":"s0"},"g":{"s0":"s0","s1":"s0"},"h":{"s0":"s1","s1":"s0"}}
|
Given the following FSM:
a b c d e f g h
s0 s1 s0 s1 s0 s1 s0 s0 s1
s1 s0 s0 s1 s0 s1 s0 s0 s0
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: g h h ?
|
s0
| 3 | 2 | 8 |
2_8
|
3c3dfd93-3363-45dc-bfb9-59ede365ca42
|
e1bcc645-0979-4ab9-9bfb-010109e1d194
|
{"states": ["s0", "s1"], "alphabets": "abcdefgh", "accepting_states": ["s1"], "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": "s0", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "h", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "f", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "h", "toStates": ["s0"]}]}
| 3 |
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"},"d":{"s0":"s0","s1":"s0"},"e":{"s0":"s1","s1":"s1"},"f":{"s0":"s0","s1":"s0"},"g":{"s0":"s0","s1":"s0"},"h":{"s0":"s1","s1":"s0"}}
|
Given the following FSM:
a b c d e f g h
s0 s1 s0 s1 s0 s1 s0 s0 s1
s1 s0 s0 s1 s0 s1 s0 s0 s0
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: g h h f ?
|
s0
| 4 | 2 | 8 |
2_8
|
e1e24bf3-3f9a-40de-b7b0-fb5e30d82142
|
e1bcc645-0979-4ab9-9bfb-010109e1d194
|
{"states": ["s0", "s1"], "alphabets": "abcdefgh", "accepting_states": ["s1"], "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": "s0", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "h", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "f", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "h", "toStates": ["s0"]}]}
| 3 |
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"},"d":{"s0":"s0","s1":"s0"},"e":{"s0":"s1","s1":"s1"},"f":{"s0":"s0","s1":"s0"},"g":{"s0":"s0","s1":"s0"},"h":{"s0":"s1","s1":"s0"}}
|
Given the following FSM:
a b c d e f g h
s0 s1 s0 s1 s0 s1 s0 s0 s1
s1 s0 s0 s1 s0 s1 s0 s0 s0
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: g h h f e ?
|
s1
| 5 | 2 | 8 |
2_8
|
514dd833-1d94-4ee2-8dd1-8fd6980260fb
|
e1bcc645-0979-4ab9-9bfb-010109e1d194
|
{"states": ["s0", "s1"], "alphabets": "abcdefgh", "accepting_states": ["s1"], "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": "s0", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "h", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "f", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "h", "toStates": ["s0"]}]}
| 3 |
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"},"d":{"s0":"s0","s1":"s0"},"e":{"s0":"s1","s1":"s1"},"f":{"s0":"s0","s1":"s0"},"g":{"s0":"s0","s1":"s0"},"h":{"s0":"s1","s1":"s0"}}
|
Given the following FSM:
a b c d e f g h
s0 s1 s0 s1 s0 s1 s0 s0 s1
s1 s0 s0 s1 s0 s1 s0 s0 s0
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: g h h f e f ?
|
s0
| 6 | 2 | 8 |
2_8
|
2f8dbc30-476b-4bed-a0b3-c50909ba74c0
|
e1bcc645-0979-4ab9-9bfb-010109e1d194
|
{"states": ["s0", "s1"], "alphabets": "abcdefgh", "accepting_states": ["s1"], "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": "s0", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "h", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "f", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "h", "toStates": ["s0"]}]}
| 3 |
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"},"d":{"s0":"s0","s1":"s0"},"e":{"s0":"s1","s1":"s1"},"f":{"s0":"s0","s1":"s0"},"g":{"s0":"s0","s1":"s0"},"h":{"s0":"s1","s1":"s0"}}
|
Given the following FSM:
a b c d e f g h
s0 s1 s0 s1 s0 s1 s0 s0 s1
s1 s0 s0 s1 s0 s1 s0 s0 s0
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: g h h f e f a ?
|
s1
| 7 | 2 | 8 |
2_8
|
2f82bc5b-eb0d-4943-a0de-02ef54b7c0d8
|
e1bcc645-0979-4ab9-9bfb-010109e1d194
|
{"states": ["s0", "s1"], "alphabets": "abcdefgh", "accepting_states": ["s1"], "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": "s0", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "h", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "f", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "h", "toStates": ["s0"]}]}
| 3 |
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"},"d":{"s0":"s0","s1":"s0"},"e":{"s0":"s1","s1":"s1"},"f":{"s0":"s0","s1":"s0"},"g":{"s0":"s0","s1":"s0"},"h":{"s0":"s1","s1":"s0"}}
|
Given the following FSM:
a b c d e f g h
s0 s1 s0 s1 s0 s1 s0 s0 s1
s1 s0 s0 s1 s0 s1 s0 s0 s0
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: g h h f e f a d ?
|
s0
| 8 | 2 | 8 |
2_8
|
f190c34e-41fc-4156-bfb5-2f32a41809a0
|
e1bcc645-0979-4ab9-9bfb-010109e1d194
|
{"states": ["s0", "s1"], "alphabets": "abcdefgh", "accepting_states": ["s1"], "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": "s0", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "h", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "f", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "h", "toStates": ["s0"]}]}
| 3 |
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"},"d":{"s0":"s0","s1":"s0"},"e":{"s0":"s1","s1":"s1"},"f":{"s0":"s0","s1":"s0"},"g":{"s0":"s0","s1":"s0"},"h":{"s0":"s1","s1":"s0"}}
|
Given the following FSM:
a b c d e f g h
s0 s1 s0 s1 s0 s1 s0 s0 s1
s1 s0 s0 s1 s0 s1 s0 s0 s0
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: g h h f e f a d h ?
|
s1
| 9 | 2 | 8 |
2_8
|
bcab1f5c-55bb-4143-9a9a-251aaec1f306
|
e1bcc645-0979-4ab9-9bfb-010109e1d194
|
{"states": ["s0", "s1"], "alphabets": "abcdefgh", "accepting_states": ["s1"], "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": "s0", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "h", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "f", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "h", "toStates": ["s0"]}]}
| 3 |
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"},"d":{"s0":"s0","s1":"s0"},"e":{"s0":"s1","s1":"s1"},"f":{"s0":"s0","s1":"s0"},"g":{"s0":"s0","s1":"s0"},"h":{"s0":"s1","s1":"s0"}}
|
Given the following FSM:
a b c d e f g h
s0 s1 s0 s1 s0 s1 s0 s0 s1
s1 s0 s0 s1 s0 s1 s0 s0 s0
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: g h h f e f a d h g ?
|
s0
| 10 | 2 | 8 |
2_8
|
d03f9570-4858-4c3f-965f-64a0ce1314b5
|
e1bcc645-0979-4ab9-9bfb-010109e1d194
|
{"states": ["s0", "s1"], "alphabets": "abcdefgh", "accepting_states": ["s1"], "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": "s0", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "h", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "f", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "h", "toStates": ["s0"]}]}
| 3 |
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"},"d":{"s0":"s0","s1":"s0"},"e":{"s0":"s1","s1":"s1"},"f":{"s0":"s0","s1":"s0"},"g":{"s0":"s0","s1":"s0"},"h":{"s0":"s1","s1":"s0"}}
|
Given the following FSM:
a b c d e f g h
s0 s1 s0 s1 s0 s1 s0 s0 s1
s1 s0 s0 s1 s0 s1 s0 s0 s0
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: g h h f e f a d h g b ?
|
s0
| 11 | 2 | 8 |
2_8
|
98604bf3-1aee-4303-b924-7833b0d8e550
|
e1bcc645-0979-4ab9-9bfb-010109e1d194
|
{"states": ["s0", "s1"], "alphabets": "abcdefgh", "accepting_states": ["s1"], "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": "s0", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "h", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "f", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "h", "toStates": ["s0"]}]}
| 3 |
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"},"d":{"s0":"s0","s1":"s0"},"e":{"s0":"s1","s1":"s1"},"f":{"s0":"s0","s1":"s0"},"g":{"s0":"s0","s1":"s0"},"h":{"s0":"s1","s1":"s0"}}
|
Given the following FSM:
a b c d e f g h
s0 s1 s0 s1 s0 s1 s0 s0 s1
s1 s0 s0 s1 s0 s1 s0 s0 s0
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: g h h f e f a d h g b c ?
|
s1
| 12 | 2 | 8 |
2_8
|
f9df58ad-c642-4086-a5f4-8a64997a3778
|
e1bcc645-0979-4ab9-9bfb-010109e1d194
|
{"states": ["s0", "s1"], "alphabets": "abcdefgh", "accepting_states": ["s1"], "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": "s0", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "h", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "f", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "h", "toStates": ["s0"]}]}
| 3 |
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"},"d":{"s0":"s0","s1":"s0"},"e":{"s0":"s1","s1":"s1"},"f":{"s0":"s0","s1":"s0"},"g":{"s0":"s0","s1":"s0"},"h":{"s0":"s1","s1":"s0"}}
|
Given the following FSM:
a b c d e f g h
s0 s1 s0 s1 s0 s1 s0 s0 s1
s1 s0 s0 s1 s0 s1 s0 s0 s0
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: g h h f e f a d h g b c c ?
|
s1
| 13 | 2 | 8 |
2_8
|
0bd477e8-8aed-44a6-bf04-593b23ed4f50
|
e1bcc645-0979-4ab9-9bfb-010109e1d194
|
{"states": ["s0", "s1"], "alphabets": "abcdefgh", "accepting_states": ["s1"], "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": "s0", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "h", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "f", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "h", "toStates": ["s0"]}]}
| 3 |
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"},"d":{"s0":"s0","s1":"s0"},"e":{"s0":"s1","s1":"s1"},"f":{"s0":"s0","s1":"s0"},"g":{"s0":"s0","s1":"s0"},"h":{"s0":"s1","s1":"s0"}}
|
Given the following FSM:
a b c d e f g h
s0 s1 s0 s1 s0 s1 s0 s0 s1
s1 s0 s0 s1 s0 s1 s0 s0 s0
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: g h h f e f a d h g b c c f ?
|
s0
| 14 | 2 | 8 |
2_8
|
87b929bd-befd-428f-a064-609dc906c364
|
e1bcc645-0979-4ab9-9bfb-010109e1d194
|
{"states": ["s0", "s1"], "alphabets": "abcdefgh", "accepting_states": ["s1"], "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": "s0", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "h", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "f", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "h", "toStates": ["s0"]}]}
| 3 |
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"},"d":{"s0":"s0","s1":"s0"},"e":{"s0":"s1","s1":"s1"},"f":{"s0":"s0","s1":"s0"},"g":{"s0":"s0","s1":"s0"},"h":{"s0":"s1","s1":"s0"}}
|
Given the following FSM:
a b c d e f g h
s0 s1 s0 s1 s0 s1 s0 s0 s1
s1 s0 s0 s1 s0 s1 s0 s0 s0
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: g h h f e f a d h g b c c f g ?
|
s0
| 15 | 2 | 8 |
2_8
|
943dc064-12ff-4a63-a0a2-6d782c588625
|
e1bcc645-0979-4ab9-9bfb-010109e1d194
|
{"states": ["s0", "s1"], "alphabets": "abcdefgh", "accepting_states": ["s1"], "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": "s0", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "h", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "f", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "h", "toStates": ["s0"]}]}
| 3 |
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"},"d":{"s0":"s0","s1":"s0"},"e":{"s0":"s1","s1":"s1"},"f":{"s0":"s0","s1":"s0"},"g":{"s0":"s0","s1":"s0"},"h":{"s0":"s1","s1":"s0"}}
|
Given the following FSM:
a b c d e f g h
s0 s1 s0 s1 s0 s1 s0 s0 s1
s1 s0 s0 s1 s0 s1 s0 s0 s0
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: g h h f e f a d h g b c c f g c ?
|
s1
| 16 | 2 | 8 |
2_8
|
8cf603a9-1a03-4c8f-bc54-920d4a254887
|
e1bcc645-0979-4ab9-9bfb-010109e1d194
|
{"states": ["s0", "s1"], "alphabets": "abcdefgh", "accepting_states": ["s1"], "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": "s0", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "h", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "f", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "h", "toStates": ["s0"]}]}
| 3 |
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"},"d":{"s0":"s0","s1":"s0"},"e":{"s0":"s1","s1":"s1"},"f":{"s0":"s0","s1":"s0"},"g":{"s0":"s0","s1":"s0"},"h":{"s0":"s1","s1":"s0"}}
|
Given the following FSM:
a b c d e f g h
s0 s1 s0 s1 s0 s1 s0 s0 s1
s1 s0 s0 s1 s0 s1 s0 s0 s0
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: g h h f e f a d h g b c c f g c e ?
|
s1
| 17 | 2 | 8 |
2_8
|
000f8569-eaba-4234-8b4c-dc930df12e19
|
e1bcc645-0979-4ab9-9bfb-010109e1d194
|
{"states": ["s0", "s1"], "alphabets": "abcdefgh", "accepting_states": ["s1"], "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": "s0", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "h", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "f", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "h", "toStates": ["s0"]}]}
| 3 |
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"},"d":{"s0":"s0","s1":"s0"},"e":{"s0":"s1","s1":"s1"},"f":{"s0":"s0","s1":"s0"},"g":{"s0":"s0","s1":"s0"},"h":{"s0":"s1","s1":"s0"}}
|
Given the following FSM:
a b c d e f g h
s0 s1 s0 s1 s0 s1 s0 s0 s1
s1 s0 s0 s1 s0 s1 s0 s0 s0
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: g h h f e f a d h g b c c f g c e c ?
|
s1
| 18 | 2 | 8 |
2_8
|
edd2586d-873c-480b-a337-274d51537e1e
|
e1bcc645-0979-4ab9-9bfb-010109e1d194
|
{"states": ["s0", "s1"], "alphabets": "abcdefgh", "accepting_states": ["s1"], "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": "s0", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "h", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "f", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "h", "toStates": ["s0"]}]}
| 3 |
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"},"d":{"s0":"s0","s1":"s0"},"e":{"s0":"s1","s1":"s1"},"f":{"s0":"s0","s1":"s0"},"g":{"s0":"s0","s1":"s0"},"h":{"s0":"s1","s1":"s0"}}
|
Given the following FSM:
a b c d e f g h
s0 s1 s0 s1 s0 s1 s0 s0 s1
s1 s0 s0 s1 s0 s1 s0 s0 s0
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: g h h f e f a d h g b c c f g c e c f ?
|
s0
| 19 | 2 | 8 |
2_8
|
6df0ba3b-821c-41d6-a6a5-b4bc775f09d1
|
e1bcc645-0979-4ab9-9bfb-010109e1d194
|
{"states": ["s0", "s1"], "alphabets": "abcdefgh", "accepting_states": ["s1"], "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": "s0", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "h", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "f", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "h", "toStates": ["s0"]}]}
| 3 |
{"a":{"s0":"s1","s1":"s0"},"b":{"s0":"s0","s1":"s0"},"c":{"s0":"s1","s1":"s1"},"d":{"s0":"s0","s1":"s0"},"e":{"s0":"s1","s1":"s1"},"f":{"s0":"s0","s1":"s0"},"g":{"s0":"s0","s1":"s0"},"h":{"s0":"s1","s1":"s0"}}
|
Given the following FSM:
a b c d e f g h
s0 s1 s0 s1 s0 s1 s0 s0 s1
s1 s0 s0 s1 s0 s1 s0 s0 s0
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: g h h f e f a d h g b c c f g c e c f d ?
|
s0
| 20 | 2 | 8 |
2_8
|
1aa8ae5e-1ae8-4fd3-9050-6b1ae3638aa8
|
7ba516fd-89aa-4a1d-9e52-1991ced814b3
|
{"states": ["s0", "s1"], "alphabets": "abcdefg", "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": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "f", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "g", "toStates": ["s0"]}]}
| 2 |
{"a":{"s0":"s0","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s1","s1":"s0"},"d":{"s0":"s0","s1":"s0"},"e":{"s0":"s0","s1":"s0"},"f":{"s0":"s1","s1":"s1"},"g":{"s0":"s0","s1":"s0"}}
|
Given the following FSM:
a b c d e f g
s0 s0 s1 s1 s0 s0 s1 s0
s1 s0 s1 s0 s0 s0 s1 s0
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: g ?
|
s0
| 1 | 2 | 7 |
2_7
|
df4c0812-62c3-46dc-b588-229a9fee52d7
|
7ba516fd-89aa-4a1d-9e52-1991ced814b3
|
{"states": ["s0", "s1"], "alphabets": "abcdefg", "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": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "f", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "g", "toStates": ["s0"]}]}
| 2 |
{"a":{"s0":"s0","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s1","s1":"s0"},"d":{"s0":"s0","s1":"s0"},"e":{"s0":"s0","s1":"s0"},"f":{"s0":"s1","s1":"s1"},"g":{"s0":"s0","s1":"s0"}}
|
Given the following FSM:
a b c d e f g
s0 s0 s1 s1 s0 s0 s1 s0
s1 s0 s1 s0 s0 s0 s1 s0
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: g a ?
|
s0
| 2 | 2 | 7 |
2_7
|
c1910565-039e-4e11-b338-f4054b99f58e
|
7ba516fd-89aa-4a1d-9e52-1991ced814b3
|
{"states": ["s0", "s1"], "alphabets": "abcdefg", "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": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "f", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "g", "toStates": ["s0"]}]}
| 2 |
{"a":{"s0":"s0","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s1","s1":"s0"},"d":{"s0":"s0","s1":"s0"},"e":{"s0":"s0","s1":"s0"},"f":{"s0":"s1","s1":"s1"},"g":{"s0":"s0","s1":"s0"}}
|
Given the following FSM:
a b c d e f g
s0 s0 s1 s1 s0 s0 s1 s0
s1 s0 s1 s0 s0 s0 s1 s0
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: g a a ?
|
s0
| 3 | 2 | 7 |
2_7
|
057f2b0d-5dfd-491e-ac21-aba4d15d0d9b
|
7ba516fd-89aa-4a1d-9e52-1991ced814b3
|
{"states": ["s0", "s1"], "alphabets": "abcdefg", "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": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "f", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "g", "toStates": ["s0"]}]}
| 2 |
{"a":{"s0":"s0","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s1","s1":"s0"},"d":{"s0":"s0","s1":"s0"},"e":{"s0":"s0","s1":"s0"},"f":{"s0":"s1","s1":"s1"},"g":{"s0":"s0","s1":"s0"}}
|
Given the following FSM:
a b c d e f g
s0 s0 s1 s1 s0 s0 s1 s0
s1 s0 s1 s0 s0 s0 s1 s0
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: g a a d ?
|
s0
| 4 | 2 | 7 |
2_7
|
588e7237-bed2-4efb-8d2a-519bb1929767
|
7ba516fd-89aa-4a1d-9e52-1991ced814b3
|
{"states": ["s0", "s1"], "alphabets": "abcdefg", "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": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "f", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "g", "toStates": ["s0"]}]}
| 2 |
{"a":{"s0":"s0","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s1","s1":"s0"},"d":{"s0":"s0","s1":"s0"},"e":{"s0":"s0","s1":"s0"},"f":{"s0":"s1","s1":"s1"},"g":{"s0":"s0","s1":"s0"}}
|
Given the following FSM:
a b c d e f g
s0 s0 s1 s1 s0 s0 s1 s0
s1 s0 s1 s0 s0 s0 s1 s0
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: g a a d c ?
|
s1
| 5 | 2 | 7 |
2_7
|
b7afc147-2bae-491b-88c4-5e4fb8c12bd6
|
7ba516fd-89aa-4a1d-9e52-1991ced814b3
|
{"states": ["s0", "s1"], "alphabets": "abcdefg", "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": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "f", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "g", "toStates": ["s0"]}]}
| 2 |
{"a":{"s0":"s0","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s1","s1":"s0"},"d":{"s0":"s0","s1":"s0"},"e":{"s0":"s0","s1":"s0"},"f":{"s0":"s1","s1":"s1"},"g":{"s0":"s0","s1":"s0"}}
|
Given the following FSM:
a b c d e f g
s0 s0 s1 s1 s0 s0 s1 s0
s1 s0 s1 s0 s0 s0 s1 s0
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: g a a d c e ?
|
s0
| 6 | 2 | 7 |
2_7
|
0bd0781c-5878-42ea-8ef7-0515cb772a97
|
7ba516fd-89aa-4a1d-9e52-1991ced814b3
|
{"states": ["s0", "s1"], "alphabets": "abcdefg", "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": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "f", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "g", "toStates": ["s0"]}]}
| 2 |
{"a":{"s0":"s0","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s1","s1":"s0"},"d":{"s0":"s0","s1":"s0"},"e":{"s0":"s0","s1":"s0"},"f":{"s0":"s1","s1":"s1"},"g":{"s0":"s0","s1":"s0"}}
|
Given the following FSM:
a b c d e f g
s0 s0 s1 s1 s0 s0 s1 s0
s1 s0 s1 s0 s0 s0 s1 s0
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: g a a d c e d ?
|
s0
| 7 | 2 | 7 |
2_7
|
d59a3c02-2e16-4e6b-8614-f59d6b9c5c1a
|
7ba516fd-89aa-4a1d-9e52-1991ced814b3
|
{"states": ["s0", "s1"], "alphabets": "abcdefg", "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": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "f", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "g", "toStates": ["s0"]}]}
| 2 |
{"a":{"s0":"s0","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s1","s1":"s0"},"d":{"s0":"s0","s1":"s0"},"e":{"s0":"s0","s1":"s0"},"f":{"s0":"s1","s1":"s1"},"g":{"s0":"s0","s1":"s0"}}
|
Given the following FSM:
a b c d e f g
s0 s0 s1 s1 s0 s0 s1 s0
s1 s0 s1 s0 s0 s0 s1 s0
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: g a a d c e d e ?
|
s0
| 8 | 2 | 7 |
2_7
|
a785a955-a933-4d34-8061-f478e79cfc61
|
7ba516fd-89aa-4a1d-9e52-1991ced814b3
|
{"states": ["s0", "s1"], "alphabets": "abcdefg", "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": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "f", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "g", "toStates": ["s0"]}]}
| 2 |
{"a":{"s0":"s0","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s1","s1":"s0"},"d":{"s0":"s0","s1":"s0"},"e":{"s0":"s0","s1":"s0"},"f":{"s0":"s1","s1":"s1"},"g":{"s0":"s0","s1":"s0"}}
|
Given the following FSM:
a b c d e f g
s0 s0 s1 s1 s0 s0 s1 s0
s1 s0 s1 s0 s0 s0 s1 s0
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: g a a d c e d e b ?
|
s1
| 9 | 2 | 7 |
2_7
|
c25a0611-129e-4911-8985-f0819b04fffd
|
7ba516fd-89aa-4a1d-9e52-1991ced814b3
|
{"states": ["s0", "s1"], "alphabets": "abcdefg", "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": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "f", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "g", "toStates": ["s0"]}]}
| 2 |
{"a":{"s0":"s0","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s1","s1":"s0"},"d":{"s0":"s0","s1":"s0"},"e":{"s0":"s0","s1":"s0"},"f":{"s0":"s1","s1":"s1"},"g":{"s0":"s0","s1":"s0"}}
|
Given the following FSM:
a b c d e f g
s0 s0 s1 s1 s0 s0 s1 s0
s1 s0 s1 s0 s0 s0 s1 s0
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: g a a d c e d e b b ?
|
s1
| 10 | 2 | 7 |
2_7
|
3d2422b1-2ad9-4e74-8a74-54eed222fc9e
|
7ba516fd-89aa-4a1d-9e52-1991ced814b3
|
{"states": ["s0", "s1"], "alphabets": "abcdefg", "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": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "f", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "g", "toStates": ["s0"]}]}
| 2 |
{"a":{"s0":"s0","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s1","s1":"s0"},"d":{"s0":"s0","s1":"s0"},"e":{"s0":"s0","s1":"s0"},"f":{"s0":"s1","s1":"s1"},"g":{"s0":"s0","s1":"s0"}}
|
Given the following FSM:
a b c d e f g
s0 s0 s1 s1 s0 s0 s1 s0
s1 s0 s1 s0 s0 s0 s1 s0
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: g a a d c e d e b b c ?
|
s0
| 11 | 2 | 7 |
2_7
|
99c27957-f9db-4ee2-8582-d0e5850ad909
|
7ba516fd-89aa-4a1d-9e52-1991ced814b3
|
{"states": ["s0", "s1"], "alphabets": "abcdefg", "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": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "f", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "g", "toStates": ["s0"]}]}
| 2 |
{"a":{"s0":"s0","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s1","s1":"s0"},"d":{"s0":"s0","s1":"s0"},"e":{"s0":"s0","s1":"s0"},"f":{"s0":"s1","s1":"s1"},"g":{"s0":"s0","s1":"s0"}}
|
Given the following FSM:
a b c d e f g
s0 s0 s1 s1 s0 s0 s1 s0
s1 s0 s1 s0 s0 s0 s1 s0
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: g a a d c e d e b b c f ?
|
s1
| 12 | 2 | 7 |
2_7
|
fc83d5e9-6e56-44ee-8ee8-1563c3d23aa5
|
7ba516fd-89aa-4a1d-9e52-1991ced814b3
|
{"states": ["s0", "s1"], "alphabets": "abcdefg", "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": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "f", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "g", "toStates": ["s0"]}]}
| 2 |
{"a":{"s0":"s0","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s1","s1":"s0"},"d":{"s0":"s0","s1":"s0"},"e":{"s0":"s0","s1":"s0"},"f":{"s0":"s1","s1":"s1"},"g":{"s0":"s0","s1":"s0"}}
|
Given the following FSM:
a b c d e f g
s0 s0 s1 s1 s0 s0 s1 s0
s1 s0 s1 s0 s0 s0 s1 s0
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: g a a d c e d e b b c f c ?
|
s0
| 13 | 2 | 7 |
2_7
|
f335d6f3-ebc8-40bd-aeeb-40509fef289b
|
7ba516fd-89aa-4a1d-9e52-1991ced814b3
|
{"states": ["s0", "s1"], "alphabets": "abcdefg", "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": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "f", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "g", "toStates": ["s0"]}]}
| 2 |
{"a":{"s0":"s0","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s1","s1":"s0"},"d":{"s0":"s0","s1":"s0"},"e":{"s0":"s0","s1":"s0"},"f":{"s0":"s1","s1":"s1"},"g":{"s0":"s0","s1":"s0"}}
|
Given the following FSM:
a b c d e f g
s0 s0 s1 s1 s0 s0 s1 s0
s1 s0 s1 s0 s0 s0 s1 s0
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: g a a d c e d e b b c f c b ?
|
s1
| 14 | 2 | 7 |
2_7
|
f159cda1-0884-4f88-89e0-cc9268c9e51c
|
7ba516fd-89aa-4a1d-9e52-1991ced814b3
|
{"states": ["s0", "s1"], "alphabets": "abcdefg", "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": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "f", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "g", "toStates": ["s0"]}]}
| 2 |
{"a":{"s0":"s0","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s1","s1":"s0"},"d":{"s0":"s0","s1":"s0"},"e":{"s0":"s0","s1":"s0"},"f":{"s0":"s1","s1":"s1"},"g":{"s0":"s0","s1":"s0"}}
|
Given the following FSM:
a b c d e f g
s0 s0 s1 s1 s0 s0 s1 s0
s1 s0 s1 s0 s0 s0 s1 s0
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: g a a d c e d e b b c f c b d ?
|
s0
| 15 | 2 | 7 |
2_7
|
a01b2e4f-2ae1-45d5-91a2-eee05edc29d1
|
7ba516fd-89aa-4a1d-9e52-1991ced814b3
|
{"states": ["s0", "s1"], "alphabets": "abcdefg", "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": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "f", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "g", "toStates": ["s0"]}]}
| 2 |
{"a":{"s0":"s0","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s1","s1":"s0"},"d":{"s0":"s0","s1":"s0"},"e":{"s0":"s0","s1":"s0"},"f":{"s0":"s1","s1":"s1"},"g":{"s0":"s0","s1":"s0"}}
|
Given the following FSM:
a b c d e f g
s0 s0 s1 s1 s0 s0 s1 s0
s1 s0 s1 s0 s0 s0 s1 s0
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: g a a d c e d e b b c f c b d g ?
|
s0
| 16 | 2 | 7 |
2_7
|
75c97ed8-b95a-46ec-a496-9b29a0e98864
|
7ba516fd-89aa-4a1d-9e52-1991ced814b3
|
{"states": ["s0", "s1"], "alphabets": "abcdefg", "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": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "f", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "g", "toStates": ["s0"]}]}
| 2 |
{"a":{"s0":"s0","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s1","s1":"s0"},"d":{"s0":"s0","s1":"s0"},"e":{"s0":"s0","s1":"s0"},"f":{"s0":"s1","s1":"s1"},"g":{"s0":"s0","s1":"s0"}}
|
Given the following FSM:
a b c d e f g
s0 s0 s1 s1 s0 s0 s1 s0
s1 s0 s1 s0 s0 s0 s1 s0
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: g a a d c e d e b b c f c b d g c ?
|
s1
| 17 | 2 | 7 |
2_7
|
4dcabc2c-3715-4fb7-aac5-d107af6856af
|
7ba516fd-89aa-4a1d-9e52-1991ced814b3
|
{"states": ["s0", "s1"], "alphabets": "abcdefg", "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": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "f", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "g", "toStates": ["s0"]}]}
| 2 |
{"a":{"s0":"s0","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s1","s1":"s0"},"d":{"s0":"s0","s1":"s0"},"e":{"s0":"s0","s1":"s0"},"f":{"s0":"s1","s1":"s1"},"g":{"s0":"s0","s1":"s0"}}
|
Given the following FSM:
a b c d e f g
s0 s0 s1 s1 s0 s0 s1 s0
s1 s0 s1 s0 s0 s0 s1 s0
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: g a a d c e d e b b c f c b d g c g ?
|
s0
| 18 | 2 | 7 |
2_7
|
030c9c68-f806-45c4-9e4d-86f72de0a7f8
|
7ba516fd-89aa-4a1d-9e52-1991ced814b3
|
{"states": ["s0", "s1"], "alphabets": "abcdefg", "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": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "f", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "g", "toStates": ["s0"]}]}
| 2 |
{"a":{"s0":"s0","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s1","s1":"s0"},"d":{"s0":"s0","s1":"s0"},"e":{"s0":"s0","s1":"s0"},"f":{"s0":"s1","s1":"s1"},"g":{"s0":"s0","s1":"s0"}}
|
Given the following FSM:
a b c d e f g
s0 s0 s1 s1 s0 s0 s1 s0
s1 s0 s1 s0 s0 s0 s1 s0
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: g a a d c e d e b b c f c b d g c g g ?
|
s0
| 19 | 2 | 7 |
2_7
|
2db81dda-331f-4d21-a705-0e8fef21bbd4
|
7ba516fd-89aa-4a1d-9e52-1991ced814b3
|
{"states": ["s0", "s1"], "alphabets": "abcdefg", "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": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "f", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "g", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "f", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "g", "toStates": ["s0"]}]}
| 2 |
{"a":{"s0":"s0","s1":"s0"},"b":{"s0":"s1","s1":"s1"},"c":{"s0":"s1","s1":"s0"},"d":{"s0":"s0","s1":"s0"},"e":{"s0":"s0","s1":"s0"},"f":{"s0":"s1","s1":"s1"},"g":{"s0":"s0","s1":"s0"}}
|
Given the following FSM:
a b c d e f g
s0 s0 s1 s1 s0 s0 s1 s0
s1 s0 s1 s0 s0 s0 s1 s0
With the initial state: s0, and accepting states: ['s0', 's1'],
What will be the state after reading the following input: g a a d c e d e b b c f c b d g c g g d ?
|
s0
| 20 | 2 | 7 |
2_7
|
b3f93f97-f966-4f84-86f5-214ec113c308
|
0c830ae3-6b32-410f-ad9d-22483e4be090
|
{"states": ["s0", "s1", "s2"], "alphabets": "ab", "accepting_states": ["s2", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}]}
| 2 |
{"a":{"s0":"s1","s1":"s2","s2":"s1"},"b":{"s0":"s2","s1":"s0","s2":"s0"}}
|
Given the following FSM:
a b
s0 s1 s2
s1 s2 s0
s2 s1 s0
With the initial state: s0, and accepting states: ['s2', 's1'],
What will be the state after reading the following input: a ?
|
s1
| 1 | 3 | 2 |
3_2
|
2f3b191c-b4c2-415b-8cac-5223a9aada56
|
0c830ae3-6b32-410f-ad9d-22483e4be090
|
{"states": ["s0", "s1", "s2"], "alphabets": "ab", "accepting_states": ["s2", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}]}
| 2 |
{"a":{"s0":"s1","s1":"s2","s2":"s1"},"b":{"s0":"s2","s1":"s0","s2":"s0"}}
|
Given the following FSM:
a b
s0 s1 s2
s1 s2 s0
s2 s1 s0
With the initial state: s0, and accepting states: ['s2', 's1'],
What will be the state after reading the following input: a b ?
|
s0
| 2 | 3 | 2 |
3_2
|
5b20d303-0ddb-4387-a166-cb9df022d1be
|
0c830ae3-6b32-410f-ad9d-22483e4be090
|
{"states": ["s0", "s1", "s2"], "alphabets": "ab", "accepting_states": ["s2", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}]}
| 2 |
{"a":{"s0":"s1","s1":"s2","s2":"s1"},"b":{"s0":"s2","s1":"s0","s2":"s0"}}
|
Given the following FSM:
a b
s0 s1 s2
s1 s2 s0
s2 s1 s0
With the initial state: s0, and accepting states: ['s2', 's1'],
What will be the state after reading the following input: a b a ?
|
s1
| 3 | 3 | 2 |
3_2
|
7f3ca7eb-c1da-4f6b-b988-c709fb469d98
|
0c830ae3-6b32-410f-ad9d-22483e4be090
|
{"states": ["s0", "s1", "s2"], "alphabets": "ab", "accepting_states": ["s2", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}]}
| 2 |
{"a":{"s0":"s1","s1":"s2","s2":"s1"},"b":{"s0":"s2","s1":"s0","s2":"s0"}}
|
Given the following FSM:
a b
s0 s1 s2
s1 s2 s0
s2 s1 s0
With the initial state: s0, and accepting states: ['s2', 's1'],
What will be the state after reading the following input: a b a a ?
|
s2
| 4 | 3 | 2 |
3_2
|
4ee78809-1bd5-456b-aeb0-be9c888bceba
|
0c830ae3-6b32-410f-ad9d-22483e4be090
|
{"states": ["s0", "s1", "s2"], "alphabets": "ab", "accepting_states": ["s2", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}]}
| 2 |
{"a":{"s0":"s1","s1":"s2","s2":"s1"},"b":{"s0":"s2","s1":"s0","s2":"s0"}}
|
Given the following FSM:
a b
s0 s1 s2
s1 s2 s0
s2 s1 s0
With the initial state: s0, and accepting states: ['s2', 's1'],
What will be the state after reading the following input: a b a a b ?
|
s0
| 5 | 3 | 2 |
3_2
|
8afe10d7-f75c-49c1-8e2b-bb49bf66e714
|
0c830ae3-6b32-410f-ad9d-22483e4be090
|
{"states": ["s0", "s1", "s2"], "alphabets": "ab", "accepting_states": ["s2", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}]}
| 2 |
{"a":{"s0":"s1","s1":"s2","s2":"s1"},"b":{"s0":"s2","s1":"s0","s2":"s0"}}
|
Given the following FSM:
a b
s0 s1 s2
s1 s2 s0
s2 s1 s0
With the initial state: s0, and accepting states: ['s2', 's1'],
What will be the state after reading the following input: a b a a b b ?
|
s2
| 6 | 3 | 2 |
3_2
|
39e16304-7d19-4d51-b4a7-9823cb801b79
|
0c830ae3-6b32-410f-ad9d-22483e4be090
|
{"states": ["s0", "s1", "s2"], "alphabets": "ab", "accepting_states": ["s2", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}]}
| 2 |
{"a":{"s0":"s1","s1":"s2","s2":"s1"},"b":{"s0":"s2","s1":"s0","s2":"s0"}}
|
Given the following FSM:
a b
s0 s1 s2
s1 s2 s0
s2 s1 s0
With the initial state: s0, and accepting states: ['s2', 's1'],
What will be the state after reading the following input: a b a a b b b ?
|
s0
| 7 | 3 | 2 |
3_2
|
ef82ed1e-8f10-4228-9e06-2bffeafe491d
|
0c830ae3-6b32-410f-ad9d-22483e4be090
|
{"states": ["s0", "s1", "s2"], "alphabets": "ab", "accepting_states": ["s2", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}]}
| 2 |
{"a":{"s0":"s1","s1":"s2","s2":"s1"},"b":{"s0":"s2","s1":"s0","s2":"s0"}}
|
Given the following FSM:
a b
s0 s1 s2
s1 s2 s0
s2 s1 s0
With the initial state: s0, and accepting states: ['s2', 's1'],
What will be the state after reading the following input: a b a a b b b a ?
|
s1
| 8 | 3 | 2 |
3_2
|
0f5f8a72-9ad3-4732-b588-7ad3c6722baf
|
0c830ae3-6b32-410f-ad9d-22483e4be090
|
{"states": ["s0", "s1", "s2"], "alphabets": "ab", "accepting_states": ["s2", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}]}
| 2 |
{"a":{"s0":"s1","s1":"s2","s2":"s1"},"b":{"s0":"s2","s1":"s0","s2":"s0"}}
|
Given the following FSM:
a b
s0 s1 s2
s1 s2 s0
s2 s1 s0
With the initial state: s0, and accepting states: ['s2', 's1'],
What will be the state after reading the following input: a b a a b b b a a ?
|
s2
| 9 | 3 | 2 |
3_2
|
96945fc2-01b5-4a32-9464-24f450fdf33e
|
0c830ae3-6b32-410f-ad9d-22483e4be090
|
{"states": ["s0", "s1", "s2"], "alphabets": "ab", "accepting_states": ["s2", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}]}
| 2 |
{"a":{"s0":"s1","s1":"s2","s2":"s1"},"b":{"s0":"s2","s1":"s0","s2":"s0"}}
|
Given the following FSM:
a b
s0 s1 s2
s1 s2 s0
s2 s1 s0
With the initial state: s0, and accepting states: ['s2', 's1'],
What will be the state after reading the following input: a b a a b b b a a b ?
|
s0
| 10 | 3 | 2 |
3_2
|
ed7f2c47-cc79-4541-9e4e-3a01b6aa33fe
|
0c830ae3-6b32-410f-ad9d-22483e4be090
|
{"states": ["s0", "s1", "s2"], "alphabets": "ab", "accepting_states": ["s2", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}]}
| 2 |
{"a":{"s0":"s1","s1":"s2","s2":"s1"},"b":{"s0":"s2","s1":"s0","s2":"s0"}}
|
Given the following FSM:
a b
s0 s1 s2
s1 s2 s0
s2 s1 s0
With the initial state: s0, and accepting states: ['s2', 's1'],
What will be the state after reading the following input: a b a a b b b a a b b ?
|
s2
| 11 | 3 | 2 |
3_2
|
2d7e579f-6f73-4675-b39a-d2b61d6e2a9a
|
0c830ae3-6b32-410f-ad9d-22483e4be090
|
{"states": ["s0", "s1", "s2"], "alphabets": "ab", "accepting_states": ["s2", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}]}
| 2 |
{"a":{"s0":"s1","s1":"s2","s2":"s1"},"b":{"s0":"s2","s1":"s0","s2":"s0"}}
|
Given the following FSM:
a b
s0 s1 s2
s1 s2 s0
s2 s1 s0
With the initial state: s0, and accepting states: ['s2', 's1'],
What will be the state after reading the following input: a b a a b b b a a b b a ?
|
s1
| 12 | 3 | 2 |
3_2
|
f92ca0b0-ee57-4bc8-bbc5-de117cabd931
|
0c830ae3-6b32-410f-ad9d-22483e4be090
|
{"states": ["s0", "s1", "s2"], "alphabets": "ab", "accepting_states": ["s2", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}]}
| 2 |
{"a":{"s0":"s1","s1":"s2","s2":"s1"},"b":{"s0":"s2","s1":"s0","s2":"s0"}}
|
Given the following FSM:
a b
s0 s1 s2
s1 s2 s0
s2 s1 s0
With the initial state: s0, and accepting states: ['s2', 's1'],
What will be the state after reading the following input: a b a a b b b a a b b a b ?
|
s0
| 13 | 3 | 2 |
3_2
|
046d774d-d17a-4ea0-9af2-d1ec12928324
|
0c830ae3-6b32-410f-ad9d-22483e4be090
|
{"states": ["s0", "s1", "s2"], "alphabets": "ab", "accepting_states": ["s2", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}]}
| 2 |
{"a":{"s0":"s1","s1":"s2","s2":"s1"},"b":{"s0":"s2","s1":"s0","s2":"s0"}}
|
Given the following FSM:
a b
s0 s1 s2
s1 s2 s0
s2 s1 s0
With the initial state: s0, and accepting states: ['s2', 's1'],
What will be the state after reading the following input: a b a a b b b a a b b a b a ?
|
s1
| 14 | 3 | 2 |
3_2
|
9ea5a04a-3d39-4827-9918-fc00a181b454
|
0c830ae3-6b32-410f-ad9d-22483e4be090
|
{"states": ["s0", "s1", "s2"], "alphabets": "ab", "accepting_states": ["s2", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}]}
| 2 |
{"a":{"s0":"s1","s1":"s2","s2":"s1"},"b":{"s0":"s2","s1":"s0","s2":"s0"}}
|
Given the following FSM:
a b
s0 s1 s2
s1 s2 s0
s2 s1 s0
With the initial state: s0, and accepting states: ['s2', 's1'],
What will be the state after reading the following input: a b a a b b b a a b b a b a b ?
|
s0
| 15 | 3 | 2 |
3_2
|
19d0df56-9a5d-48b7-92bd-383f3a54194d
|
0c830ae3-6b32-410f-ad9d-22483e4be090
|
{"states": ["s0", "s1", "s2"], "alphabets": "ab", "accepting_states": ["s2", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}]}
| 2 |
{"a":{"s0":"s1","s1":"s2","s2":"s1"},"b":{"s0":"s2","s1":"s0","s2":"s0"}}
|
Given the following FSM:
a b
s0 s1 s2
s1 s2 s0
s2 s1 s0
With the initial state: s0, and accepting states: ['s2', 's1'],
What will be the state after reading the following input: a b a a b b b a a b b a b a b b ?
|
s2
| 16 | 3 | 2 |
3_2
|
f3cea2bd-cca1-422d-8f62-6c81986f92a9
|
0c830ae3-6b32-410f-ad9d-22483e4be090
|
{"states": ["s0", "s1", "s2"], "alphabets": "ab", "accepting_states": ["s2", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}]}
| 2 |
{"a":{"s0":"s1","s1":"s2","s2":"s1"},"b":{"s0":"s2","s1":"s0","s2":"s0"}}
|
Given the following FSM:
a b
s0 s1 s2
s1 s2 s0
s2 s1 s0
With the initial state: s0, and accepting states: ['s2', 's1'],
What will be the state after reading the following input: a b a a b b b a a b b a b a b b a ?
|
s1
| 17 | 3 | 2 |
3_2
|
7109749b-25a9-4f39-9962-1cd27a0f371d
|
0c830ae3-6b32-410f-ad9d-22483e4be090
|
{"states": ["s0", "s1", "s2"], "alphabets": "ab", "accepting_states": ["s2", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}]}
| 2 |
{"a":{"s0":"s1","s1":"s2","s2":"s1"},"b":{"s0":"s2","s1":"s0","s2":"s0"}}
|
Given the following FSM:
a b
s0 s1 s2
s1 s2 s0
s2 s1 s0
With the initial state: s0, and accepting states: ['s2', 's1'],
What will be the state after reading the following input: a b a a b b b a a b b a b a b b a b ?
|
s0
| 18 | 3 | 2 |
3_2
|
2807b11c-025a-4ca0-893c-2a918c87f0a5
|
0c830ae3-6b32-410f-ad9d-22483e4be090
|
{"states": ["s0", "s1", "s2"], "alphabets": "ab", "accepting_states": ["s2", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}]}
| 2 |
{"a":{"s0":"s1","s1":"s2","s2":"s1"},"b":{"s0":"s2","s1":"s0","s2":"s0"}}
|
Given the following FSM:
a b
s0 s1 s2
s1 s2 s0
s2 s1 s0
With the initial state: s0, and accepting states: ['s2', 's1'],
What will be the state after reading the following input: a b a a b b b a a b b a b a b b a b a ?
|
s1
| 19 | 3 | 2 |
3_2
|
a3c77523-36fe-4e9a-a645-72020ff66868
|
0c830ae3-6b32-410f-ad9d-22483e4be090
|
{"states": ["s0", "s1", "s2"], "alphabets": "ab", "accepting_states": ["s2", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}]}
| 2 |
{"a":{"s0":"s1","s1":"s2","s2":"s1"},"b":{"s0":"s2","s1":"s0","s2":"s0"}}
|
Given the following FSM:
a b
s0 s1 s2
s1 s2 s0
s2 s1 s0
With the initial state: s0, and accepting states: ['s2', 's1'],
What will be the state after reading the following input: a b a a b b b a a b b a b a b b a b a a ?
|
s2
| 20 | 3 | 2 |
3_2
|
4dc59734-a23e-4368-aaba-a13072356d41
|
f5f5ef6c-ca35-47b9-84f9-f1d6fd677669
|
{"states": ["s0", "s1", "s2"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s2"]}]}
| 2 |
{"a":{"s0":"s2","s1":"s0","s2":"s0"},"b":{"s0":"s2","s1":"s0","s2":"s2"},"c":{"s0":"s0","s1":"s0","s2":"s2"},"d":{"s0":"s1","s1":"s0","s2":"s2"}}
|
Given the following FSM:
a b c d
s0 s2 s2 s0 s1
s1 s0 s0 s0 s0
s2 s0 s2 s2 s2
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: a ?
|
s2
| 1 | 3 | 4 |
3_4
|
e8b9b1ed-05f0-4267-8d95-f751c4880cd2
|
f5f5ef6c-ca35-47b9-84f9-f1d6fd677669
|
{"states": ["s0", "s1", "s2"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s2"]}]}
| 2 |
{"a":{"s0":"s2","s1":"s0","s2":"s0"},"b":{"s0":"s2","s1":"s0","s2":"s2"},"c":{"s0":"s0","s1":"s0","s2":"s2"},"d":{"s0":"s1","s1":"s0","s2":"s2"}}
|
Given the following FSM:
a b c d
s0 s2 s2 s0 s1
s1 s0 s0 s0 s0
s2 s0 s2 s2 s2
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: a a ?
|
s0
| 2 | 3 | 4 |
3_4
|
9f82e280-7c09-4e36-8006-913780c5cb20
|
f5f5ef6c-ca35-47b9-84f9-f1d6fd677669
|
{"states": ["s0", "s1", "s2"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s2"]}]}
| 2 |
{"a":{"s0":"s2","s1":"s0","s2":"s0"},"b":{"s0":"s2","s1":"s0","s2":"s2"},"c":{"s0":"s0","s1":"s0","s2":"s2"},"d":{"s0":"s1","s1":"s0","s2":"s2"}}
|
Given the following FSM:
a b c d
s0 s2 s2 s0 s1
s1 s0 s0 s0 s0
s2 s0 s2 s2 s2
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: a a b ?
|
s2
| 3 | 3 | 4 |
3_4
|
2115e4d0-e5b6-4c45-afb8-2a67002b629d
|
f5f5ef6c-ca35-47b9-84f9-f1d6fd677669
|
{"states": ["s0", "s1", "s2"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s2"]}]}
| 2 |
{"a":{"s0":"s2","s1":"s0","s2":"s0"},"b":{"s0":"s2","s1":"s0","s2":"s2"},"c":{"s0":"s0","s1":"s0","s2":"s2"},"d":{"s0":"s1","s1":"s0","s2":"s2"}}
|
Given the following FSM:
a b c d
s0 s2 s2 s0 s1
s1 s0 s0 s0 s0
s2 s0 s2 s2 s2
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: a a b c ?
|
s2
| 4 | 3 | 4 |
3_4
|
3e029340-b436-4fe9-8131-5bda1435b921
|
f5f5ef6c-ca35-47b9-84f9-f1d6fd677669
|
{"states": ["s0", "s1", "s2"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s2"]}]}
| 2 |
{"a":{"s0":"s2","s1":"s0","s2":"s0"},"b":{"s0":"s2","s1":"s0","s2":"s2"},"c":{"s0":"s0","s1":"s0","s2":"s2"},"d":{"s0":"s1","s1":"s0","s2":"s2"}}
|
Given the following FSM:
a b c d
s0 s2 s2 s0 s1
s1 s0 s0 s0 s0
s2 s0 s2 s2 s2
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: a a b c b ?
|
s2
| 5 | 3 | 4 |
3_4
|
bad2e86c-ba50-422b-b6a7-d6268fef8093
|
f5f5ef6c-ca35-47b9-84f9-f1d6fd677669
|
{"states": ["s0", "s1", "s2"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s2"]}]}
| 2 |
{"a":{"s0":"s2","s1":"s0","s2":"s0"},"b":{"s0":"s2","s1":"s0","s2":"s2"},"c":{"s0":"s0","s1":"s0","s2":"s2"},"d":{"s0":"s1","s1":"s0","s2":"s2"}}
|
Given the following FSM:
a b c d
s0 s2 s2 s0 s1
s1 s0 s0 s0 s0
s2 s0 s2 s2 s2
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: a a b c b d ?
|
s2
| 6 | 3 | 4 |
3_4
|
2d53cd36-8a84-4521-9df3-fe5016795413
|
f5f5ef6c-ca35-47b9-84f9-f1d6fd677669
|
{"states": ["s0", "s1", "s2"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s2"]}]}
| 2 |
{"a":{"s0":"s2","s1":"s0","s2":"s0"},"b":{"s0":"s2","s1":"s0","s2":"s2"},"c":{"s0":"s0","s1":"s0","s2":"s2"},"d":{"s0":"s1","s1":"s0","s2":"s2"}}
|
Given the following FSM:
a b c d
s0 s2 s2 s0 s1
s1 s0 s0 s0 s0
s2 s0 s2 s2 s2
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: a a b c b d a ?
|
s0
| 7 | 3 | 4 |
3_4
|
d3cd2117-ac0b-4c8e-a37e-dde406ce9420
|
f5f5ef6c-ca35-47b9-84f9-f1d6fd677669
|
{"states": ["s0", "s1", "s2"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s2"]}]}
| 2 |
{"a":{"s0":"s2","s1":"s0","s2":"s0"},"b":{"s0":"s2","s1":"s0","s2":"s2"},"c":{"s0":"s0","s1":"s0","s2":"s2"},"d":{"s0":"s1","s1":"s0","s2":"s2"}}
|
Given the following FSM:
a b c d
s0 s2 s2 s0 s1
s1 s0 s0 s0 s0
s2 s0 s2 s2 s2
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: a a b c b d a b ?
|
s2
| 8 | 3 | 4 |
3_4
|
40c9d8a1-9f11-4c79-b70c-e36a4f87ea00
|
f5f5ef6c-ca35-47b9-84f9-f1d6fd677669
|
{"states": ["s0", "s1", "s2"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s2"]}]}
| 2 |
{"a":{"s0":"s2","s1":"s0","s2":"s0"},"b":{"s0":"s2","s1":"s0","s2":"s2"},"c":{"s0":"s0","s1":"s0","s2":"s2"},"d":{"s0":"s1","s1":"s0","s2":"s2"}}
|
Given the following FSM:
a b c d
s0 s2 s2 s0 s1
s1 s0 s0 s0 s0
s2 s0 s2 s2 s2
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: a a b c b d a b d ?
|
s2
| 9 | 3 | 4 |
3_4
|
fe6beaf8-7637-4055-b2f3-8c646a0ba60f
|
f5f5ef6c-ca35-47b9-84f9-f1d6fd677669
|
{"states": ["s0", "s1", "s2"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s2"]}]}
| 2 |
{"a":{"s0":"s2","s1":"s0","s2":"s0"},"b":{"s0":"s2","s1":"s0","s2":"s2"},"c":{"s0":"s0","s1":"s0","s2":"s2"},"d":{"s0":"s1","s1":"s0","s2":"s2"}}
|
Given the following FSM:
a b c d
s0 s2 s2 s0 s1
s1 s0 s0 s0 s0
s2 s0 s2 s2 s2
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: a a b c b d a b d d ?
|
s2
| 10 | 3 | 4 |
3_4
|
0a542b50-c3db-4dcb-aaad-d2247b91118f
|
f5f5ef6c-ca35-47b9-84f9-f1d6fd677669
|
{"states": ["s0", "s1", "s2"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s2"]}]}
| 2 |
{"a":{"s0":"s2","s1":"s0","s2":"s0"},"b":{"s0":"s2","s1":"s0","s2":"s2"},"c":{"s0":"s0","s1":"s0","s2":"s2"},"d":{"s0":"s1","s1":"s0","s2":"s2"}}
|
Given the following FSM:
a b c d
s0 s2 s2 s0 s1
s1 s0 s0 s0 s0
s2 s0 s2 s2 s2
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: a a b c b d a b d d c ?
|
s2
| 11 | 3 | 4 |
3_4
|
1ec8a22d-0f78-4120-a32c-8c1bded9820f
|
f5f5ef6c-ca35-47b9-84f9-f1d6fd677669
|
{"states": ["s0", "s1", "s2"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s2"]}]}
| 2 |
{"a":{"s0":"s2","s1":"s0","s2":"s0"},"b":{"s0":"s2","s1":"s0","s2":"s2"},"c":{"s0":"s0","s1":"s0","s2":"s2"},"d":{"s0":"s1","s1":"s0","s2":"s2"}}
|
Given the following FSM:
a b c d
s0 s2 s2 s0 s1
s1 s0 s0 s0 s0
s2 s0 s2 s2 s2
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: a a b c b d a b d d c c ?
|
s2
| 12 | 3 | 4 |
3_4
|
3e435888-0f20-4e8f-bc99-46513c764ba1
|
f5f5ef6c-ca35-47b9-84f9-f1d6fd677669
|
{"states": ["s0", "s1", "s2"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s2"]}]}
| 2 |
{"a":{"s0":"s2","s1":"s0","s2":"s0"},"b":{"s0":"s2","s1":"s0","s2":"s2"},"c":{"s0":"s0","s1":"s0","s2":"s2"},"d":{"s0":"s1","s1":"s0","s2":"s2"}}
|
Given the following FSM:
a b c d
s0 s2 s2 s0 s1
s1 s0 s0 s0 s0
s2 s0 s2 s2 s2
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: a a b c b d a b d d c c a ?
|
s0
| 13 | 3 | 4 |
3_4
|
45eb57fc-e599-4e4c-8802-b26181461291
|
f5f5ef6c-ca35-47b9-84f9-f1d6fd677669
|
{"states": ["s0", "s1", "s2"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s2"]}]}
| 2 |
{"a":{"s0":"s2","s1":"s0","s2":"s0"},"b":{"s0":"s2","s1":"s0","s2":"s2"},"c":{"s0":"s0","s1":"s0","s2":"s2"},"d":{"s0":"s1","s1":"s0","s2":"s2"}}
|
Given the following FSM:
a b c d
s0 s2 s2 s0 s1
s1 s0 s0 s0 s0
s2 s0 s2 s2 s2
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: a a b c b d a b d d c c a d ?
|
s1
| 14 | 3 | 4 |
3_4
|
5723eb54-f9b4-4560-a294-36659ea63e77
|
f5f5ef6c-ca35-47b9-84f9-f1d6fd677669
|
{"states": ["s0", "s1", "s2"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s2"]}]}
| 2 |
{"a":{"s0":"s2","s1":"s0","s2":"s0"},"b":{"s0":"s2","s1":"s0","s2":"s2"},"c":{"s0":"s0","s1":"s0","s2":"s2"},"d":{"s0":"s1","s1":"s0","s2":"s2"}}
|
Given the following FSM:
a b c d
s0 s2 s2 s0 s1
s1 s0 s0 s0 s0
s2 s0 s2 s2 s2
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: a a b c b d a b d d c c a d a ?
|
s0
| 15 | 3 | 4 |
3_4
|
b310ab72-056c-4718-b38a-646a812a5273
|
f5f5ef6c-ca35-47b9-84f9-f1d6fd677669
|
{"states": ["s0", "s1", "s2"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s2"]}]}
| 2 |
{"a":{"s0":"s2","s1":"s0","s2":"s0"},"b":{"s0":"s2","s1":"s0","s2":"s2"},"c":{"s0":"s0","s1":"s0","s2":"s2"},"d":{"s0":"s1","s1":"s0","s2":"s2"}}
|
Given the following FSM:
a b c d
s0 s2 s2 s0 s1
s1 s0 s0 s0 s0
s2 s0 s2 s2 s2
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: a a b c b d a b d d c c a d a a ?
|
s2
| 16 | 3 | 4 |
3_4
|
43953cdb-2fa1-4df0-bdf3-2d91d46b8c7d
|
f5f5ef6c-ca35-47b9-84f9-f1d6fd677669
|
{"states": ["s0", "s1", "s2"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s2"]}]}
| 2 |
{"a":{"s0":"s2","s1":"s0","s2":"s0"},"b":{"s0":"s2","s1":"s0","s2":"s2"},"c":{"s0":"s0","s1":"s0","s2":"s2"},"d":{"s0":"s1","s1":"s0","s2":"s2"}}
|
Given the following FSM:
a b c d
s0 s2 s2 s0 s1
s1 s0 s0 s0 s0
s2 s0 s2 s2 s2
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: a a b c b d a b d d c c a d a a b ?
|
s2
| 17 | 3 | 4 |
3_4
|
a658248c-2465-49d5-8018-45311faa28c4
|
f5f5ef6c-ca35-47b9-84f9-f1d6fd677669
|
{"states": ["s0", "s1", "s2"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s2"]}]}
| 2 |
{"a":{"s0":"s2","s1":"s0","s2":"s0"},"b":{"s0":"s2","s1":"s0","s2":"s2"},"c":{"s0":"s0","s1":"s0","s2":"s2"},"d":{"s0":"s1","s1":"s0","s2":"s2"}}
|
Given the following FSM:
a b c d
s0 s2 s2 s0 s1
s1 s0 s0 s0 s0
s2 s0 s2 s2 s2
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: a a b c b d a b d d c c a d a a b d ?
|
s2
| 18 | 3 | 4 |
3_4
|
087dee27-24ab-48eb-ba07-6fca3fb51776
|
f5f5ef6c-ca35-47b9-84f9-f1d6fd677669
|
{"states": ["s0", "s1", "s2"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s2"]}]}
| 2 |
{"a":{"s0":"s2","s1":"s0","s2":"s0"},"b":{"s0":"s2","s1":"s0","s2":"s2"},"c":{"s0":"s0","s1":"s0","s2":"s2"},"d":{"s0":"s1","s1":"s0","s2":"s2"}}
|
Given the following FSM:
a b c d
s0 s2 s2 s0 s1
s1 s0 s0 s0 s0
s2 s0 s2 s2 s2
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: a a b c b d a b d d c c a d a a b d d ?
|
s2
| 19 | 3 | 4 |
3_4
|
a149d22b-73ee-45d9-a36b-790ac13dace4
|
f5f5ef6c-ca35-47b9-84f9-f1d6fd677669
|
{"states": ["s0", "s1", "s2"], "alphabets": "abcd", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s2"]}]}
| 2 |
{"a":{"s0":"s2","s1":"s0","s2":"s0"},"b":{"s0":"s2","s1":"s0","s2":"s2"},"c":{"s0":"s0","s1":"s0","s2":"s2"},"d":{"s0":"s1","s1":"s0","s2":"s2"}}
|
Given the following FSM:
a b c d
s0 s2 s2 s0 s1
s1 s0 s0 s0 s0
s2 s0 s2 s2 s2
With the initial state: s0, and accepting states: ['s1'],
What will be the state after reading the following input: a a b c b d a b d d c c a d a a b d d c ?
|
s2
| 20 | 3 | 4 |
3_4
|
000e0409-614b-4688-b413-df8eab10c5c9
|
29308bd0-ca00-4c45-9446-cf4718840a17
|
{"states": ["s0", "s1", "s2"], "alphabets": "abcde", "accepting_states": ["s0", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s2"]}]}
| 2 |
{"a":{"s0":"s0","s1":"s2","s2":"s1"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s0","s2":"s1"},"d":{"s0":"s0","s1":"s1","s2":"s1"},"e":{"s0":"s0","s1":"s1","s2":"s2"}}
|
Given the following FSM:
a b c d e
s0 s0 s1 s1 s0 s0
s1 s2 s0 s0 s1 s1
s2 s1 s0 s1 s1 s2
With the initial state: s0, and accepting states: ['s0', 's1', 's2'],
What will be the state after reading the following input: c ?
|
s1
| 1 | 3 | 5 |
3_5
|
04d499e1-882b-4655-a9b5-f7fd52a58422
|
29308bd0-ca00-4c45-9446-cf4718840a17
|
{"states": ["s0", "s1", "s2"], "alphabets": "abcde", "accepting_states": ["s0", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s2"]}]}
| 2 |
{"a":{"s0":"s0","s1":"s2","s2":"s1"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s0","s2":"s1"},"d":{"s0":"s0","s1":"s1","s2":"s1"},"e":{"s0":"s0","s1":"s1","s2":"s2"}}
|
Given the following FSM:
a b c d e
s0 s0 s1 s1 s0 s0
s1 s2 s0 s0 s1 s1
s2 s1 s0 s1 s1 s2
With the initial state: s0, and accepting states: ['s0', 's1', 's2'],
What will be the state after reading the following input: c b ?
|
s0
| 2 | 3 | 5 |
3_5
|
78b7607e-35cd-4cc3-a6ee-9fc17f1f9261
|
29308bd0-ca00-4c45-9446-cf4718840a17
|
{"states": ["s0", "s1", "s2"], "alphabets": "abcde", "accepting_states": ["s0", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s2"]}]}
| 2 |
{"a":{"s0":"s0","s1":"s2","s2":"s1"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s0","s2":"s1"},"d":{"s0":"s0","s1":"s1","s2":"s1"},"e":{"s0":"s0","s1":"s1","s2":"s2"}}
|
Given the following FSM:
a b c d e
s0 s0 s1 s1 s0 s0
s1 s2 s0 s0 s1 s1
s2 s1 s0 s1 s1 s2
With the initial state: s0, and accepting states: ['s0', 's1', 's2'],
What will be the state after reading the following input: c b c ?
|
s1
| 3 | 3 | 5 |
3_5
|
2f5c4a55-b899-4278-b9da-4c1275c4bd40
|
29308bd0-ca00-4c45-9446-cf4718840a17
|
{"states": ["s0", "s1", "s2"], "alphabets": "abcde", "accepting_states": ["s0", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s2"]}]}
| 2 |
{"a":{"s0":"s0","s1":"s2","s2":"s1"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s0","s2":"s1"},"d":{"s0":"s0","s1":"s1","s2":"s1"},"e":{"s0":"s0","s1":"s1","s2":"s2"}}
|
Given the following FSM:
a b c d e
s0 s0 s1 s1 s0 s0
s1 s2 s0 s0 s1 s1
s2 s1 s0 s1 s1 s2
With the initial state: s0, and accepting states: ['s0', 's1', 's2'],
What will be the state after reading the following input: c b c b ?
|
s0
| 4 | 3 | 5 |
3_5
|
2518dae7-4c99-4b25-8cf7-900ab24fe3ae
|
29308bd0-ca00-4c45-9446-cf4718840a17
|
{"states": ["s0", "s1", "s2"], "alphabets": "abcde", "accepting_states": ["s0", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s2"]}]}
| 2 |
{"a":{"s0":"s0","s1":"s2","s2":"s1"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s0","s2":"s1"},"d":{"s0":"s0","s1":"s1","s2":"s1"},"e":{"s0":"s0","s1":"s1","s2":"s2"}}
|
Given the following FSM:
a b c d e
s0 s0 s1 s1 s0 s0
s1 s2 s0 s0 s1 s1
s2 s1 s0 s1 s1 s2
With the initial state: s0, and accepting states: ['s0', 's1', 's2'],
What will be the state after reading the following input: c b c b a ?
|
s0
| 5 | 3 | 5 |
3_5
|
aecb80be-0311-4e7a-82f0-09293b425a24
|
29308bd0-ca00-4c45-9446-cf4718840a17
|
{"states": ["s0", "s1", "s2"], "alphabets": "abcde", "accepting_states": ["s0", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s2"]}]}
| 2 |
{"a":{"s0":"s0","s1":"s2","s2":"s1"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s0","s2":"s1"},"d":{"s0":"s0","s1":"s1","s2":"s1"},"e":{"s0":"s0","s1":"s1","s2":"s2"}}
|
Given the following FSM:
a b c d e
s0 s0 s1 s1 s0 s0
s1 s2 s0 s0 s1 s1
s2 s1 s0 s1 s1 s2
With the initial state: s0, and accepting states: ['s0', 's1', 's2'],
What will be the state after reading the following input: c b c b a d ?
|
s0
| 6 | 3 | 5 |
3_5
|
a996cb2f-5269-4c40-90a5-9c6ba6d49d07
|
29308bd0-ca00-4c45-9446-cf4718840a17
|
{"states": ["s0", "s1", "s2"], "alphabets": "abcde", "accepting_states": ["s0", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s2"]}]}
| 2 |
{"a":{"s0":"s0","s1":"s2","s2":"s1"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s0","s2":"s1"},"d":{"s0":"s0","s1":"s1","s2":"s1"},"e":{"s0":"s0","s1":"s1","s2":"s2"}}
|
Given the following FSM:
a b c d e
s0 s0 s1 s1 s0 s0
s1 s2 s0 s0 s1 s1
s2 s1 s0 s1 s1 s2
With the initial state: s0, and accepting states: ['s0', 's1', 's2'],
What will be the state after reading the following input: c b c b a d b ?
|
s1
| 7 | 3 | 5 |
3_5
|
3ee683cb-700c-4942-90ea-a2ced26fafab
|
29308bd0-ca00-4c45-9446-cf4718840a17
|
{"states": ["s0", "s1", "s2"], "alphabets": "abcde", "accepting_states": ["s0", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s2"]}]}
| 2 |
{"a":{"s0":"s0","s1":"s2","s2":"s1"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s0","s2":"s1"},"d":{"s0":"s0","s1":"s1","s2":"s1"},"e":{"s0":"s0","s1":"s1","s2":"s2"}}
|
Given the following FSM:
a b c d e
s0 s0 s1 s1 s0 s0
s1 s2 s0 s0 s1 s1
s2 s1 s0 s1 s1 s2
With the initial state: s0, and accepting states: ['s0', 's1', 's2'],
What will be the state after reading the following input: c b c b a d b a ?
|
s2
| 8 | 3 | 5 |
3_5
|
3f1fce29-5e6d-47cb-b157-8ac30d172cf6
|
29308bd0-ca00-4c45-9446-cf4718840a17
|
{"states": ["s0", "s1", "s2"], "alphabets": "abcde", "accepting_states": ["s0", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s2"]}]}
| 2 |
{"a":{"s0":"s0","s1":"s2","s2":"s1"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s0","s2":"s1"},"d":{"s0":"s0","s1":"s1","s2":"s1"},"e":{"s0":"s0","s1":"s1","s2":"s2"}}
|
Given the following FSM:
a b c d e
s0 s0 s1 s1 s0 s0
s1 s2 s0 s0 s1 s1
s2 s1 s0 s1 s1 s2
With the initial state: s0, and accepting states: ['s0', 's1', 's2'],
What will be the state after reading the following input: c b c b a d b a c ?
|
s1
| 9 | 3 | 5 |
3_5
|
f94ad5ad-2393-4d64-86e8-38b776aaf188
|
29308bd0-ca00-4c45-9446-cf4718840a17
|
{"states": ["s0", "s1", "s2"], "alphabets": "abcde", "accepting_states": ["s0", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s2"]}]}
| 2 |
{"a":{"s0":"s0","s1":"s2","s2":"s1"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s0","s2":"s1"},"d":{"s0":"s0","s1":"s1","s2":"s1"},"e":{"s0":"s0","s1":"s1","s2":"s2"}}
|
Given the following FSM:
a b c d e
s0 s0 s1 s1 s0 s0
s1 s2 s0 s0 s1 s1
s2 s1 s0 s1 s1 s2
With the initial state: s0, and accepting states: ['s0', 's1', 's2'],
What will be the state after reading the following input: c b c b a d b a c a ?
|
s2
| 10 | 3 | 5 |
3_5
|
c9443bca-32fe-4d4e-9ad5-e4887c08fb8f
|
29308bd0-ca00-4c45-9446-cf4718840a17
|
{"states": ["s0", "s1", "s2"], "alphabets": "abcde", "accepting_states": ["s0", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s2"]}]}
| 2 |
{"a":{"s0":"s0","s1":"s2","s2":"s1"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s0","s2":"s1"},"d":{"s0":"s0","s1":"s1","s2":"s1"},"e":{"s0":"s0","s1":"s1","s2":"s2"}}
|
Given the following FSM:
a b c d e
s0 s0 s1 s1 s0 s0
s1 s2 s0 s0 s1 s1
s2 s1 s0 s1 s1 s2
With the initial state: s0, and accepting states: ['s0', 's1', 's2'],
What will be the state after reading the following input: c b c b a d b a c a d ?
|
s1
| 11 | 3 | 5 |
3_5
|
ab1c40fb-61f2-4750-9181-f1583b823ed9
|
29308bd0-ca00-4c45-9446-cf4718840a17
|
{"states": ["s0", "s1", "s2"], "alphabets": "abcde", "accepting_states": ["s0", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s2"]}]}
| 2 |
{"a":{"s0":"s0","s1":"s2","s2":"s1"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s0","s2":"s1"},"d":{"s0":"s0","s1":"s1","s2":"s1"},"e":{"s0":"s0","s1":"s1","s2":"s2"}}
|
Given the following FSM:
a b c d e
s0 s0 s1 s1 s0 s0
s1 s2 s0 s0 s1 s1
s2 s1 s0 s1 s1 s2
With the initial state: s0, and accepting states: ['s0', 's1', 's2'],
What will be the state after reading the following input: c b c b a d b a c a d d ?
|
s1
| 12 | 3 | 5 |
3_5
|
f95dd96b-fe7a-41d7-9f14-e79d0faa4bc3
|
29308bd0-ca00-4c45-9446-cf4718840a17
|
{"states": ["s0", "s1", "s2"], "alphabets": "abcde", "accepting_states": ["s0", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s2"]}]}
| 2 |
{"a":{"s0":"s0","s1":"s2","s2":"s1"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s0","s2":"s1"},"d":{"s0":"s0","s1":"s1","s2":"s1"},"e":{"s0":"s0","s1":"s1","s2":"s2"}}
|
Given the following FSM:
a b c d e
s0 s0 s1 s1 s0 s0
s1 s2 s0 s0 s1 s1
s2 s1 s0 s1 s1 s2
With the initial state: s0, and accepting states: ['s0', 's1', 's2'],
What will be the state after reading the following input: c b c b a d b a c a d d a ?
|
s2
| 13 | 3 | 5 |
3_5
|
bbc2701f-a540-42d7-b046-62f428ef693f
|
29308bd0-ca00-4c45-9446-cf4718840a17
|
{"states": ["s0", "s1", "s2"], "alphabets": "abcde", "accepting_states": ["s0", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s2"]}]}
| 2 |
{"a":{"s0":"s0","s1":"s2","s2":"s1"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s0","s2":"s1"},"d":{"s0":"s0","s1":"s1","s2":"s1"},"e":{"s0":"s0","s1":"s1","s2":"s2"}}
|
Given the following FSM:
a b c d e
s0 s0 s1 s1 s0 s0
s1 s2 s0 s0 s1 s1
s2 s1 s0 s1 s1 s2
With the initial state: s0, and accepting states: ['s0', 's1', 's2'],
What will be the state after reading the following input: c b c b a d b a c a d d a b ?
|
s0
| 14 | 3 | 5 |
3_5
|
371de561-d4ec-4e58-ab31-96955686e171
|
29308bd0-ca00-4c45-9446-cf4718840a17
|
{"states": ["s0", "s1", "s2"], "alphabets": "abcde", "accepting_states": ["s0", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s2"]}]}
| 2 |
{"a":{"s0":"s0","s1":"s2","s2":"s1"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s0","s2":"s1"},"d":{"s0":"s0","s1":"s1","s2":"s1"},"e":{"s0":"s0","s1":"s1","s2":"s2"}}
|
Given the following FSM:
a b c d e
s0 s0 s1 s1 s0 s0
s1 s2 s0 s0 s1 s1
s2 s1 s0 s1 s1 s2
With the initial state: s0, and accepting states: ['s0', 's1', 's2'],
What will be the state after reading the following input: c b c b a d b a c a d d a b e ?
|
s0
| 15 | 3 | 5 |
3_5
|
8cf2b93f-9160-46e2-9fcc-e5909d4221af
|
29308bd0-ca00-4c45-9446-cf4718840a17
|
{"states": ["s0", "s1", "s2"], "alphabets": "abcde", "accepting_states": ["s0", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s2"]}]}
| 2 |
{"a":{"s0":"s0","s1":"s2","s2":"s1"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s0","s2":"s1"},"d":{"s0":"s0","s1":"s1","s2":"s1"},"e":{"s0":"s0","s1":"s1","s2":"s2"}}
|
Given the following FSM:
a b c d e
s0 s0 s1 s1 s0 s0
s1 s2 s0 s0 s1 s1
s2 s1 s0 s1 s1 s2
With the initial state: s0, and accepting states: ['s0', 's1', 's2'],
What will be the state after reading the following input: c b c b a d b a c a d d a b e e ?
|
s0
| 16 | 3 | 5 |
3_5
|
769e79bd-b27f-4ae3-8e42-88a553f51592
|
29308bd0-ca00-4c45-9446-cf4718840a17
|
{"states": ["s0", "s1", "s2"], "alphabets": "abcde", "accepting_states": ["s0", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s2"]}]}
| 2 |
{"a":{"s0":"s0","s1":"s2","s2":"s1"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s0","s2":"s1"},"d":{"s0":"s0","s1":"s1","s2":"s1"},"e":{"s0":"s0","s1":"s1","s2":"s2"}}
|
Given the following FSM:
a b c d e
s0 s0 s1 s1 s0 s0
s1 s2 s0 s0 s1 s1
s2 s1 s0 s1 s1 s2
With the initial state: s0, and accepting states: ['s0', 's1', 's2'],
What will be the state after reading the following input: c b c b a d b a c a d d a b e e e ?
|
s0
| 17 | 3 | 5 |
3_5
|
a2addcd9-d2a8-4b6c-a18f-b84b775e775f
|
29308bd0-ca00-4c45-9446-cf4718840a17
|
{"states": ["s0", "s1", "s2"], "alphabets": "abcde", "accepting_states": ["s0", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s2"]}]}
| 2 |
{"a":{"s0":"s0","s1":"s2","s2":"s1"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s0","s2":"s1"},"d":{"s0":"s0","s1":"s1","s2":"s1"},"e":{"s0":"s0","s1":"s1","s2":"s2"}}
|
Given the following FSM:
a b c d e
s0 s0 s1 s1 s0 s0
s1 s2 s0 s0 s1 s1
s2 s1 s0 s1 s1 s2
With the initial state: s0, and accepting states: ['s0', 's1', 's2'],
What will be the state after reading the following input: c b c b a d b a c a d d a b e e e a ?
|
s0
| 18 | 3 | 5 |
3_5
|
b16d20f3-72d3-426a-a4d9-751d6d9d8151
|
29308bd0-ca00-4c45-9446-cf4718840a17
|
{"states": ["s0", "s1", "s2"], "alphabets": "abcde", "accepting_states": ["s0", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s2"]}]}
| 2 |
{"a":{"s0":"s0","s1":"s2","s2":"s1"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s0","s2":"s1"},"d":{"s0":"s0","s1":"s1","s2":"s1"},"e":{"s0":"s0","s1":"s1","s2":"s2"}}
|
Given the following FSM:
a b c d e
s0 s0 s1 s1 s0 s0
s1 s2 s0 s0 s1 s1
s2 s1 s0 s1 s1 s2
With the initial state: s0, and accepting states: ['s0', 's1', 's2'],
What will be the state after reading the following input: c b c b a d b a c a d d a b e e e a e ?
|
s0
| 19 | 3 | 5 |
3_5
|
6b583401-ca37-4d20-be0c-d0642248f4e7
|
29308bd0-ca00-4c45-9446-cf4718840a17
|
{"states": ["s0", "s1", "s2"], "alphabets": "abcde", "accepting_states": ["s0", "s1", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "d", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "e", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "c", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "e", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "c", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "d", "toStates": ["s1"]}, {"fromState": "s2", "symbol": "e", "toStates": ["s2"]}]}
| 2 |
{"a":{"s0":"s0","s1":"s2","s2":"s1"},"b":{"s0":"s1","s1":"s0","s2":"s0"},"c":{"s0":"s1","s1":"s0","s2":"s1"},"d":{"s0":"s0","s1":"s1","s2":"s1"},"e":{"s0":"s0","s1":"s1","s2":"s2"}}
|
Given the following FSM:
a b c d e
s0 s0 s1 s1 s0 s0
s1 s2 s0 s0 s1 s1
s2 s1 s0 s1 s1 s2
With the initial state: s0, and accepting states: ['s0', 's1', 's2'],
What will be the state after reading the following input: c b c b a d b a c a d d a b e e e a e a ?
|
s0
| 20 | 3 | 5 |
3_5
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.