query_id
stringlengths
36
36
fsm_id
stringclasses
325 values
fsm_json
stringclasses
276 values
difficulty_level
int64
1
3
transition_matrix
stringclasses
268 values
query
stringlengths
146
431
answer
stringclasses
13 values
substring_index
int64
1
29
59eb9169-5f16-475d-ae02-3ed36d1cf6e2
60602d4d-b2c9-411c-a2a9-c01e06026e24
{"states": ["s0", "s1", "s2", "s3", "s5"], "alphabets": "ab", "accepting_states": ["s3", "s1", "s0", "s2", "s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s5"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s5", "symbol": "b", "toStates": ["s5"]}]}
2
{"a":{"s0":"s0","s1":"s5","s2":"s2","s3":"s1","s5":"s3"},"b":{"s0":"s2","s1":"s5","s2":"s3","s3":"s2","s5":"s5"}}
Given the following FSM: a b s0 s0 s2 s1 s5 s5 s2 s2 s3 s3 s1 s2 s5 s3 s5 Initial state: s0, and Accepting states: s3, s1, s0, s2, s5 What will be the state after reading the following input: abbabbaaababababbbbbababaab?
s5
27
ad68ea71-e984-4be6-a253-4b8b6c0d9ed3
60602d4d-b2c9-411c-a2a9-c01e06026e24
{"states": ["s0", "s1", "s2", "s3", "s5"], "alphabets": "ab", "accepting_states": ["s3", "s1", "s0", "s2", "s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s5"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s5", "symbol": "b", "toStates": ["s5"]}]}
2
{"a":{"s0":"s0","s1":"s5","s2":"s2","s3":"s1","s5":"s3"},"b":{"s0":"s2","s1":"s5","s2":"s3","s3":"s2","s5":"s5"}}
Given the following FSM: a b s0 s0 s2 s1 s5 s5 s2 s2 s3 s3 s1 s2 s5 s3 s5 Initial state: s0, and Accepting states: s3, s1, s0, s2, s5 What will be the state after reading the following input: abbabbaaababababbbbbababaabb?
s5
28
20394a8a-5aff-42e7-84ab-cc9cb913a227
60602d4d-b2c9-411c-a2a9-c01e06026e24
{"states": ["s0", "s1", "s2", "s3", "s5"], "alphabets": "ab", "accepting_states": ["s3", "s1", "s0", "s2", "s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s5"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s5", "symbol": "b", "toStates": ["s5"]}]}
2
{"a":{"s0":"s0","s1":"s5","s2":"s2","s3":"s1","s5":"s3"},"b":{"s0":"s2","s1":"s5","s2":"s3","s3":"s2","s5":"s5"}}
Given the following FSM: a b s0 s0 s2 s1 s5 s5 s2 s2 s3 s3 s1 s2 s5 s3 s5 Initial state: s0, and Accepting states: s3, s1, s0, s2, s5 What will be the state after reading the following input: abbabbaaababababbbbbababaabba?
s3
29
b98b7ba5-118e-426b-84c6-fa41e3cd7e70
e7f653fd-3ab1-4a91-bcf0-df05f3490b80
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s0"}}
Given the following FSM: a b s0 s1 s0 s1 s1 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: b?
s0
1
15367d5e-f9e0-4ca0-86e0-a00e34d39173
e7f653fd-3ab1-4a91-bcf0-df05f3490b80
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s0"}}
Given the following FSM: a b s0 s1 s0 s1 s1 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: bb?
s0
2
cb1d0b91-5205-466f-a2e1-3d5ca995e385
e7f653fd-3ab1-4a91-bcf0-df05f3490b80
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s0"}}
Given the following FSM: a b s0 s1 s0 s1 s1 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: bbb?
s0
3
cb70ad63-18dc-4a6f-8cdd-914ec03c912e
e7f653fd-3ab1-4a91-bcf0-df05f3490b80
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s0"}}
Given the following FSM: a b s0 s1 s0 s1 s1 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: bbbb?
s0
4
40b91137-b411-4b67-91c2-4a5cdd49c5c2
e7f653fd-3ab1-4a91-bcf0-df05f3490b80
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s0"}}
Given the following FSM: a b s0 s1 s0 s1 s1 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: bbbba?
s1
5
cf138c78-a5b9-4329-9378-301813f6917d
e7f653fd-3ab1-4a91-bcf0-df05f3490b80
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s0"}}
Given the following FSM: a b s0 s1 s0 s1 s1 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: bbbbaa?
s1
6
11bac370-2996-4347-bac4-7b3853bd6f5f
e7f653fd-3ab1-4a91-bcf0-df05f3490b80
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s0"}}
Given the following FSM: a b s0 s1 s0 s1 s1 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: bbbbaaa?
s1
7
1a9e7d98-ec32-42ed-8870-772af44d13ba
e7f653fd-3ab1-4a91-bcf0-df05f3490b80
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s0"}}
Given the following FSM: a b s0 s1 s0 s1 s1 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: bbbbaaaa?
s1
8
e16249f8-f3c9-4a07-9620-c9d018db3282
e7f653fd-3ab1-4a91-bcf0-df05f3490b80
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s0"}}
Given the following FSM: a b s0 s1 s0 s1 s1 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: bbbbaaaab?
s0
9
d85f3e34-37b3-44fd-a5e2-10419837aad1
e7f653fd-3ab1-4a91-bcf0-df05f3490b80
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s0"}}
Given the following FSM: a b s0 s1 s0 s1 s1 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: bbbbaaaabb?
s0
10
3dc63776-9a05-4836-8555-13ba513a1895
e7f653fd-3ab1-4a91-bcf0-df05f3490b80
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s0"}}
Given the following FSM: a b s0 s1 s0 s1 s1 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: bbbbaaaabba?
s1
11
a417d0cc-0a97-47fa-8263-8c320011d481
e7f653fd-3ab1-4a91-bcf0-df05f3490b80
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s0"}}
Given the following FSM: a b s0 s1 s0 s1 s1 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: bbbbaaaabbaa?
s1
12
ad89f60b-3021-4554-885b-0c7877403587
e7f653fd-3ab1-4a91-bcf0-df05f3490b80
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s0"}}
Given the following FSM: a b s0 s1 s0 s1 s1 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: bbbbaaaabbaaa?
s1
13
eaf7b48f-8cf8-47ac-b3ac-3023cdcd1bad
e7f653fd-3ab1-4a91-bcf0-df05f3490b80
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s0"}}
Given the following FSM: a b s0 s1 s0 s1 s1 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: bbbbaaaabbaaab?
s0
14
487d0b8f-6695-42c5-b8fe-d03475e4014d
e7f653fd-3ab1-4a91-bcf0-df05f3490b80
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s0"}}
Given the following FSM: a b s0 s1 s0 s1 s1 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: bbbbaaaabbaaabb?
s0
15
9deac3e1-8e8f-446a-b5e8-787b5e7f45ba
e7f653fd-3ab1-4a91-bcf0-df05f3490b80
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s0"}}
Given the following FSM: a b s0 s1 s0 s1 s1 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: bbbbaaaabbaaabbb?
s0
16
128e87fb-5746-4687-9958-de3111081ac3
e7f653fd-3ab1-4a91-bcf0-df05f3490b80
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s0"}}
Given the following FSM: a b s0 s1 s0 s1 s1 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: bbbbaaaabbaaabbba?
s1
17
8a5c8db4-6304-43db-80e2-43d9f2783699
e7f653fd-3ab1-4a91-bcf0-df05f3490b80
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s0"}}
Given the following FSM: a b s0 s1 s0 s1 s1 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: bbbbaaaabbaaabbbaa?
s1
18
85b46734-2816-4d1f-b58a-14c655f367ce
e7f653fd-3ab1-4a91-bcf0-df05f3490b80
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s0"}}
Given the following FSM: a b s0 s1 s0 s1 s1 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: bbbbaaaabbaaabbbaab?
s0
19
1c54350c-18e6-4f2e-998b-66bf3081b489
e7f653fd-3ab1-4a91-bcf0-df05f3490b80
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s0"}}
Given the following FSM: a b s0 s1 s0 s1 s1 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: bbbbaaaabbaaabbbaabb?
s0
20
e5ccb037-6a14-4dfa-be77-31a53751ba05
e7f653fd-3ab1-4a91-bcf0-df05f3490b80
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s0"}}
Given the following FSM: a b s0 s1 s0 s1 s1 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: bbbbaaaabbaaabbbaabbb?
s0
21
850dcc87-b111-4677-8457-7b4eea7acc49
e7f653fd-3ab1-4a91-bcf0-df05f3490b80
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s0"}}
Given the following FSM: a b s0 s1 s0 s1 s1 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: bbbbaaaabbaaabbbaabbba?
s1
22
7b38687a-f090-46d3-88b7-9866b344f908
e7f653fd-3ab1-4a91-bcf0-df05f3490b80
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s0"}}
Given the following FSM: a b s0 s1 s0 s1 s1 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: bbbbaaaabbaaabbbaabbbaa?
s1
23
01b88e62-b735-4b48-a5c8-1f85ecfc5e28
e7f653fd-3ab1-4a91-bcf0-df05f3490b80
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s0"}}
Given the following FSM: a b s0 s1 s0 s1 s1 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: bbbbaaaabbaaabbbaabbbaaa?
s1
24
cfbbff77-92b9-418b-a96f-147d56c0010a
e7f653fd-3ab1-4a91-bcf0-df05f3490b80
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s0"}}
Given the following FSM: a b s0 s1 s0 s1 s1 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: bbbbaaaabbaaabbbaabbbaaab?
s0
25
083278c3-efe1-435c-85f4-7ff54c4dc343
e7f653fd-3ab1-4a91-bcf0-df05f3490b80
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s0"}}
Given the following FSM: a b s0 s1 s0 s1 s1 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: bbbbaaaabbaaabbbaabbbaaabb?
s0
26
670df37f-4f6b-46d3-abac-a914deb297e5
e7f653fd-3ab1-4a91-bcf0-df05f3490b80
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s0"}}
Given the following FSM: a b s0 s1 s0 s1 s1 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: bbbbaaaabbaaabbbaabbbaaabba?
s1
27
27f4a97d-46cc-42e0-96dc-27693c9cabc0
e7f653fd-3ab1-4a91-bcf0-df05f3490b80
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s0"}}
Given the following FSM: a b s0 s1 s0 s1 s1 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: bbbbaaaabbaaabbbaabbbaaabbab?
s0
28
a73cb9d3-7b1e-490c-8d8c-0c67064d9ecd
e7f653fd-3ab1-4a91-bcf0-df05f3490b80
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s0","s1":"s0"}}
Given the following FSM: a b s0 s1 s0 s1 s1 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: bbbbaaaabbaaabbbaabbbaaabbabb?
s0
29
32d722cf-ac34-4f78-af4e-ada50ae5bec0
531342fb-a07f-4a44-9bee-c759ff5fd625
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b s0 s1 s1 s1 s1 s1 Initial state: s0, and Accepting states: s1, s0 What will be the state after reading the following input: a?
s1
1
a387bf4e-aebc-4d26-b85f-7d91d3de169d
531342fb-a07f-4a44-9bee-c759ff5fd625
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b s0 s1 s1 s1 s1 s1 Initial state: s0, and Accepting states: s1, s0 What will be the state after reading the following input: aa?
s1
2
1f0c8485-d912-40f1-80c9-8ff26a1ba373
531342fb-a07f-4a44-9bee-c759ff5fd625
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b s0 s1 s1 s1 s1 s1 Initial state: s0, and Accepting states: s1, s0 What will be the state after reading the following input: aaa?
s1
3
649284c9-9e81-4f26-97fe-b0831dc5d518
531342fb-a07f-4a44-9bee-c759ff5fd625
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b s0 s1 s1 s1 s1 s1 Initial state: s0, and Accepting states: s1, s0 What will be the state after reading the following input: aaaa?
s1
4
3999b505-bf29-4636-9090-baa32794ccfe
531342fb-a07f-4a44-9bee-c759ff5fd625
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b s0 s1 s1 s1 s1 s1 Initial state: s0, and Accepting states: s1, s0 What will be the state after reading the following input: aaaab?
s1
5
5c6bde6e-c617-4f66-b390-326456b2753b
531342fb-a07f-4a44-9bee-c759ff5fd625
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b s0 s1 s1 s1 s1 s1 Initial state: s0, and Accepting states: s1, s0 What will be the state after reading the following input: aaaabb?
s1
6
626668f7-7add-409f-9149-880e39f46c36
531342fb-a07f-4a44-9bee-c759ff5fd625
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b s0 s1 s1 s1 s1 s1 Initial state: s0, and Accepting states: s1, s0 What will be the state after reading the following input: aaaabbb?
s1
7
591f60cb-c90d-41b4-85bb-779cb86fb4cc
531342fb-a07f-4a44-9bee-c759ff5fd625
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b s0 s1 s1 s1 s1 s1 Initial state: s0, and Accepting states: s1, s0 What will be the state after reading the following input: aaaabbba?
s1
8
92472d54-5710-4ba5-ab73-33f0d7ae5667
531342fb-a07f-4a44-9bee-c759ff5fd625
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b s0 s1 s1 s1 s1 s1 Initial state: s0, and Accepting states: s1, s0 What will be the state after reading the following input: aaaabbbaa?
s1
9
3771c6da-fcd3-4750-b40b-0113addb6ea9
531342fb-a07f-4a44-9bee-c759ff5fd625
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b s0 s1 s1 s1 s1 s1 Initial state: s0, and Accepting states: s1, s0 What will be the state after reading the following input: aaaabbbaaa?
s1
10
53534fd1-d0c5-4597-a53a-b33f5982635d
531342fb-a07f-4a44-9bee-c759ff5fd625
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b s0 s1 s1 s1 s1 s1 Initial state: s0, and Accepting states: s1, s0 What will be the state after reading the following input: aaaabbbaaab?
s1
11
9308a0f5-ecf6-49bd-a4c9-1180628db808
531342fb-a07f-4a44-9bee-c759ff5fd625
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b s0 s1 s1 s1 s1 s1 Initial state: s0, and Accepting states: s1, s0 What will be the state after reading the following input: aaaabbbaaaba?
s1
12
31635af0-148e-4c21-8849-2e624188c57a
531342fb-a07f-4a44-9bee-c759ff5fd625
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b s0 s1 s1 s1 s1 s1 Initial state: s0, and Accepting states: s1, s0 What will be the state after reading the following input: aaaabbbaaabaa?
s1
13
eb4d8b5b-c076-42cb-8608-7c9f3dcc97f4
531342fb-a07f-4a44-9bee-c759ff5fd625
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b s0 s1 s1 s1 s1 s1 Initial state: s0, and Accepting states: s1, s0 What will be the state after reading the following input: aaaabbbaaabaab?
s1
14
9ae9b3d6-3274-4929-8d8b-d92f8d33271f
531342fb-a07f-4a44-9bee-c759ff5fd625
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b s0 s1 s1 s1 s1 s1 Initial state: s0, and Accepting states: s1, s0 What will be the state after reading the following input: aaaabbbaaabaaba?
s1
15
d3a01261-1d73-4e80-afec-ab7e36eab3a5
531342fb-a07f-4a44-9bee-c759ff5fd625
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b s0 s1 s1 s1 s1 s1 Initial state: s0, and Accepting states: s1, s0 What will be the state after reading the following input: aaaabbbaaabaabaa?
s1
16
082be4a9-490c-4394-b120-a653e45bfd21
531342fb-a07f-4a44-9bee-c759ff5fd625
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b s0 s1 s1 s1 s1 s1 Initial state: s0, and Accepting states: s1, s0 What will be the state after reading the following input: aaaabbbaaabaabaab?
s1
17
f5d4f7f7-676c-4039-9507-87d53da5a19d
531342fb-a07f-4a44-9bee-c759ff5fd625
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b s0 s1 s1 s1 s1 s1 Initial state: s0, and Accepting states: s1, s0 What will be the state after reading the following input: aaaabbbaaabaabaabb?
s1
18
c9cc2de3-a074-4ced-a5ac-25a3e33c6f3f
531342fb-a07f-4a44-9bee-c759ff5fd625
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b s0 s1 s1 s1 s1 s1 Initial state: s0, and Accepting states: s1, s0 What will be the state after reading the following input: aaaabbbaaabaabaabbb?
s1
19
6b4bb47e-2dc1-45eb-9103-4a42b7a3b414
531342fb-a07f-4a44-9bee-c759ff5fd625
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b s0 s1 s1 s1 s1 s1 Initial state: s0, and Accepting states: s1, s0 What will be the state after reading the following input: aaaabbbaaabaabaabbba?
s1
20
4516720b-e6a4-4a69-85b0-f82ed973e43d
531342fb-a07f-4a44-9bee-c759ff5fd625
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b s0 s1 s1 s1 s1 s1 Initial state: s0, and Accepting states: s1, s0 What will be the state after reading the following input: aaaabbbaaabaabaabbbab?
s1
21
460032f6-230a-451f-9116-b657a5a04631
531342fb-a07f-4a44-9bee-c759ff5fd625
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b s0 s1 s1 s1 s1 s1 Initial state: s0, and Accepting states: s1, s0 What will be the state after reading the following input: aaaabbbaaabaabaabbbaba?
s1
22
0ba9b365-6a96-43ce-886f-d2fda1150bed
531342fb-a07f-4a44-9bee-c759ff5fd625
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b s0 s1 s1 s1 s1 s1 Initial state: s0, and Accepting states: s1, s0 What will be the state after reading the following input: aaaabbbaaabaabaabbbabab?
s1
23
e5e92ab5-ace2-4be3-a3be-fc75b53c9123
531342fb-a07f-4a44-9bee-c759ff5fd625
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b s0 s1 s1 s1 s1 s1 Initial state: s0, and Accepting states: s1, s0 What will be the state after reading the following input: aaaabbbaaabaabaabbbababa?
s1
24
27f5db9f-fde5-4542-b812-2a8e2947d32f
531342fb-a07f-4a44-9bee-c759ff5fd625
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b s0 s1 s1 s1 s1 s1 Initial state: s0, and Accepting states: s1, s0 What will be the state after reading the following input: aaaabbbaaabaabaabbbababaa?
s1
25
e33bc852-7224-43c9-8eba-d47ac435b197
531342fb-a07f-4a44-9bee-c759ff5fd625
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b s0 s1 s1 s1 s1 s1 Initial state: s0, and Accepting states: s1, s0 What will be the state after reading the following input: aaaabbbaaabaabaabbbababaaa?
s1
26
79ed812b-758a-4008-ac22-9b7e7cd9dbd1
531342fb-a07f-4a44-9bee-c759ff5fd625
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b s0 s1 s1 s1 s1 s1 Initial state: s0, and Accepting states: s1, s0 What will be the state after reading the following input: aaaabbbaaabaabaabbbababaaaa?
s1
27
316eaddb-4d88-4324-920f-6896112e4711
531342fb-a07f-4a44-9bee-c759ff5fd625
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b s0 s1 s1 s1 s1 s1 Initial state: s0, and Accepting states: s1, s0 What will be the state after reading the following input: aaaabbbaaabaabaabbbababaaaab?
s1
28
5c48e8e8-c898-4f71-8913-b3c91dbaf425
531342fb-a07f-4a44-9bee-c759ff5fd625
{"states": ["s0", "s1"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s1"]}]}
1
{"a":{"s0":"s1","s1":"s1"},"b":{"s0":"s1","s1":"s1"}}
Given the following FSM: a b s0 s1 s1 s1 s1 s1 Initial state: s0, and Accepting states: s1, s0 What will be the state after reading the following input: aaaabbbaaabaabaabbbababaaaabb?
s1
29
a284daf3-515b-4a03-9868-0d731a8266b0
455f46b3-4ded-484c-bfb0-a56ca7efaa35
{"states": ["s0", "s1", "s3", "s6"], "alphabets": "ab", "accepting_states": ["s1", "s6", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s6","s1":"s1","s3":"s3","s6":"s3"},"b":{"s0":"s6","s1":"s6","s3":"s3","s6":"s1"}}
Given the following FSM: a b s0 s6 s6 s1 s1 s6 s3 s3 s3 s6 s3 s1 Initial state: s0, and Accepting states: s1, s6, s0 What will be the state after reading the following input: b?
s6
1
c6934c2c-ec83-4481-9ca6-0c70f986c95d
455f46b3-4ded-484c-bfb0-a56ca7efaa35
{"states": ["s0", "s1", "s3", "s6"], "alphabets": "ab", "accepting_states": ["s1", "s6", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s6","s1":"s1","s3":"s3","s6":"s3"},"b":{"s0":"s6","s1":"s6","s3":"s3","s6":"s1"}}
Given the following FSM: a b s0 s6 s6 s1 s1 s6 s3 s3 s3 s6 s3 s1 Initial state: s0, and Accepting states: s1, s6, s0 What will be the state after reading the following input: ba?
s3
2
dcdab3ce-f6d3-4473-a630-0db29df73268
455f46b3-4ded-484c-bfb0-a56ca7efaa35
{"states": ["s0", "s1", "s3", "s6"], "alphabets": "ab", "accepting_states": ["s1", "s6", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s6","s1":"s1","s3":"s3","s6":"s3"},"b":{"s0":"s6","s1":"s6","s3":"s3","s6":"s1"}}
Given the following FSM: a b s0 s6 s6 s1 s1 s6 s3 s3 s3 s6 s3 s1 Initial state: s0, and Accepting states: s1, s6, s0 What will be the state after reading the following input: baa?
s3
3
d64b3afd-a8bb-4d0c-8283-17fa3a07c6d1
455f46b3-4ded-484c-bfb0-a56ca7efaa35
{"states": ["s0", "s1", "s3", "s6"], "alphabets": "ab", "accepting_states": ["s1", "s6", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s6","s1":"s1","s3":"s3","s6":"s3"},"b":{"s0":"s6","s1":"s6","s3":"s3","s6":"s1"}}
Given the following FSM: a b s0 s6 s6 s1 s1 s6 s3 s3 s3 s6 s3 s1 Initial state: s0, and Accepting states: s1, s6, s0 What will be the state after reading the following input: baaa?
s3
4
9064c8a2-9197-442b-bacb-7efbe19f15ce
455f46b3-4ded-484c-bfb0-a56ca7efaa35
{"states": ["s0", "s1", "s3", "s6"], "alphabets": "ab", "accepting_states": ["s1", "s6", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s6","s1":"s1","s3":"s3","s6":"s3"},"b":{"s0":"s6","s1":"s6","s3":"s3","s6":"s1"}}
Given the following FSM: a b s0 s6 s6 s1 s1 s6 s3 s3 s3 s6 s3 s1 Initial state: s0, and Accepting states: s1, s6, s0 What will be the state after reading the following input: baaab?
s3
5
6b26685b-1799-4d6c-977f-a0306db41d5c
455f46b3-4ded-484c-bfb0-a56ca7efaa35
{"states": ["s0", "s1", "s3", "s6"], "alphabets": "ab", "accepting_states": ["s1", "s6", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s6","s1":"s1","s3":"s3","s6":"s3"},"b":{"s0":"s6","s1":"s6","s3":"s3","s6":"s1"}}
Given the following FSM: a b s0 s6 s6 s1 s1 s6 s3 s3 s3 s6 s3 s1 Initial state: s0, and Accepting states: s1, s6, s0 What will be the state after reading the following input: baaabb?
s3
6
2eca0337-b3cf-417c-b7fc-8929802d9388
455f46b3-4ded-484c-bfb0-a56ca7efaa35
{"states": ["s0", "s1", "s3", "s6"], "alphabets": "ab", "accepting_states": ["s1", "s6", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s6","s1":"s1","s3":"s3","s6":"s3"},"b":{"s0":"s6","s1":"s6","s3":"s3","s6":"s1"}}
Given the following FSM: a b s0 s6 s6 s1 s1 s6 s3 s3 s3 s6 s3 s1 Initial state: s0, and Accepting states: s1, s6, s0 What will be the state after reading the following input: baaabbb?
s3
7
4920e90c-14a0-4057-9036-7b113653dbf3
455f46b3-4ded-484c-bfb0-a56ca7efaa35
{"states": ["s0", "s1", "s3", "s6"], "alphabets": "ab", "accepting_states": ["s1", "s6", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s6","s1":"s1","s3":"s3","s6":"s3"},"b":{"s0":"s6","s1":"s6","s3":"s3","s6":"s1"}}
Given the following FSM: a b s0 s6 s6 s1 s1 s6 s3 s3 s3 s6 s3 s1 Initial state: s0, and Accepting states: s1, s6, s0 What will be the state after reading the following input: baaabbba?
s3
8
173de3ed-85df-4854-8abb-ce5408619396
455f46b3-4ded-484c-bfb0-a56ca7efaa35
{"states": ["s0", "s1", "s3", "s6"], "alphabets": "ab", "accepting_states": ["s1", "s6", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s6","s1":"s1","s3":"s3","s6":"s3"},"b":{"s0":"s6","s1":"s6","s3":"s3","s6":"s1"}}
Given the following FSM: a b s0 s6 s6 s1 s1 s6 s3 s3 s3 s6 s3 s1 Initial state: s0, and Accepting states: s1, s6, s0 What will be the state after reading the following input: baaabbbab?
s3
9
8c79aa22-e827-4516-bee5-1429071c71a4
455f46b3-4ded-484c-bfb0-a56ca7efaa35
{"states": ["s0", "s1", "s3", "s6"], "alphabets": "ab", "accepting_states": ["s1", "s6", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s6","s1":"s1","s3":"s3","s6":"s3"},"b":{"s0":"s6","s1":"s6","s3":"s3","s6":"s1"}}
Given the following FSM: a b s0 s6 s6 s1 s1 s6 s3 s3 s3 s6 s3 s1 Initial state: s0, and Accepting states: s1, s6, s0 What will be the state after reading the following input: baaabbbabb?
s3
10
122bd852-9e8e-4484-9240-05423461f863
455f46b3-4ded-484c-bfb0-a56ca7efaa35
{"states": ["s0", "s1", "s3", "s6"], "alphabets": "ab", "accepting_states": ["s1", "s6", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s6","s1":"s1","s3":"s3","s6":"s3"},"b":{"s0":"s6","s1":"s6","s3":"s3","s6":"s1"}}
Given the following FSM: a b s0 s6 s6 s1 s1 s6 s3 s3 s3 s6 s3 s1 Initial state: s0, and Accepting states: s1, s6, s0 What will be the state after reading the following input: baaabbbabba?
s3
11
9aabc21d-8ab3-4281-a274-f97d3376df77
455f46b3-4ded-484c-bfb0-a56ca7efaa35
{"states": ["s0", "s1", "s3", "s6"], "alphabets": "ab", "accepting_states": ["s1", "s6", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s6","s1":"s1","s3":"s3","s6":"s3"},"b":{"s0":"s6","s1":"s6","s3":"s3","s6":"s1"}}
Given the following FSM: a b s0 s6 s6 s1 s1 s6 s3 s3 s3 s6 s3 s1 Initial state: s0, and Accepting states: s1, s6, s0 What will be the state after reading the following input: baaabbbabbaa?
s3
12
88be2e64-b4e7-44eb-bba4-dfec9ca0a657
455f46b3-4ded-484c-bfb0-a56ca7efaa35
{"states": ["s0", "s1", "s3", "s6"], "alphabets": "ab", "accepting_states": ["s1", "s6", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s6","s1":"s1","s3":"s3","s6":"s3"},"b":{"s0":"s6","s1":"s6","s3":"s3","s6":"s1"}}
Given the following FSM: a b s0 s6 s6 s1 s1 s6 s3 s3 s3 s6 s3 s1 Initial state: s0, and Accepting states: s1, s6, s0 What will be the state after reading the following input: baaabbbabbaaa?
s3
13
32f56b1e-5769-4290-aac5-4285e20103a6
455f46b3-4ded-484c-bfb0-a56ca7efaa35
{"states": ["s0", "s1", "s3", "s6"], "alphabets": "ab", "accepting_states": ["s1", "s6", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s6","s1":"s1","s3":"s3","s6":"s3"},"b":{"s0":"s6","s1":"s6","s3":"s3","s6":"s1"}}
Given the following FSM: a b s0 s6 s6 s1 s1 s6 s3 s3 s3 s6 s3 s1 Initial state: s0, and Accepting states: s1, s6, s0 What will be the state after reading the following input: baaabbbabbaaaa?
s3
14
172d0bd8-740b-4d97-97e0-84358b529c71
455f46b3-4ded-484c-bfb0-a56ca7efaa35
{"states": ["s0", "s1", "s3", "s6"], "alphabets": "ab", "accepting_states": ["s1", "s6", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s6","s1":"s1","s3":"s3","s6":"s3"},"b":{"s0":"s6","s1":"s6","s3":"s3","s6":"s1"}}
Given the following FSM: a b s0 s6 s6 s1 s1 s6 s3 s3 s3 s6 s3 s1 Initial state: s0, and Accepting states: s1, s6, s0 What will be the state after reading the following input: baaabbbabbaaaab?
s3
15
93908f86-9772-460e-b7ec-bab85ca7c831
455f46b3-4ded-484c-bfb0-a56ca7efaa35
{"states": ["s0", "s1", "s3", "s6"], "alphabets": "ab", "accepting_states": ["s1", "s6", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s6","s1":"s1","s3":"s3","s6":"s3"},"b":{"s0":"s6","s1":"s6","s3":"s3","s6":"s1"}}
Given the following FSM: a b s0 s6 s6 s1 s1 s6 s3 s3 s3 s6 s3 s1 Initial state: s0, and Accepting states: s1, s6, s0 What will be the state after reading the following input: baaabbbabbaaaaba?
s3
16
08e355cb-df1b-4d7e-ab78-c341935c6a56
455f46b3-4ded-484c-bfb0-a56ca7efaa35
{"states": ["s0", "s1", "s3", "s6"], "alphabets": "ab", "accepting_states": ["s1", "s6", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s6","s1":"s1","s3":"s3","s6":"s3"},"b":{"s0":"s6","s1":"s6","s3":"s3","s6":"s1"}}
Given the following FSM: a b s0 s6 s6 s1 s1 s6 s3 s3 s3 s6 s3 s1 Initial state: s0, and Accepting states: s1, s6, s0 What will be the state after reading the following input: baaabbbabbaaaabab?
s3
17
32e22038-abbf-4ff3-b54c-e061dd7f7a92
455f46b3-4ded-484c-bfb0-a56ca7efaa35
{"states": ["s0", "s1", "s3", "s6"], "alphabets": "ab", "accepting_states": ["s1", "s6", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s6","s1":"s1","s3":"s3","s6":"s3"},"b":{"s0":"s6","s1":"s6","s3":"s3","s6":"s1"}}
Given the following FSM: a b s0 s6 s6 s1 s1 s6 s3 s3 s3 s6 s3 s1 Initial state: s0, and Accepting states: s1, s6, s0 What will be the state after reading the following input: baaabbbabbaaaababa?
s3
18
83eb6574-f8ef-4ada-8b55-8b687470230d
455f46b3-4ded-484c-bfb0-a56ca7efaa35
{"states": ["s0", "s1", "s3", "s6"], "alphabets": "ab", "accepting_states": ["s1", "s6", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s6","s1":"s1","s3":"s3","s6":"s3"},"b":{"s0":"s6","s1":"s6","s3":"s3","s6":"s1"}}
Given the following FSM: a b s0 s6 s6 s1 s1 s6 s3 s3 s3 s6 s3 s1 Initial state: s0, and Accepting states: s1, s6, s0 What will be the state after reading the following input: baaabbbabbaaaababab?
s3
19
9859779d-6968-4f26-8aa4-99fa40395c06
455f46b3-4ded-484c-bfb0-a56ca7efaa35
{"states": ["s0", "s1", "s3", "s6"], "alphabets": "ab", "accepting_states": ["s1", "s6", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s6","s1":"s1","s3":"s3","s6":"s3"},"b":{"s0":"s6","s1":"s6","s3":"s3","s6":"s1"}}
Given the following FSM: a b s0 s6 s6 s1 s1 s6 s3 s3 s3 s6 s3 s1 Initial state: s0, and Accepting states: s1, s6, s0 What will be the state after reading the following input: baaabbbabbaaaabababb?
s3
20
166dc5f7-3ba7-44ca-ac8e-b3fb0f8c4a89
455f46b3-4ded-484c-bfb0-a56ca7efaa35
{"states": ["s0", "s1", "s3", "s6"], "alphabets": "ab", "accepting_states": ["s1", "s6", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s6","s1":"s1","s3":"s3","s6":"s3"},"b":{"s0":"s6","s1":"s6","s3":"s3","s6":"s1"}}
Given the following FSM: a b s0 s6 s6 s1 s1 s6 s3 s3 s3 s6 s3 s1 Initial state: s0, and Accepting states: s1, s6, s0 What will be the state after reading the following input: baaabbbabbaaaabababba?
s3
21
3686749d-7eb8-4d88-9991-e6d064dfdcf8
455f46b3-4ded-484c-bfb0-a56ca7efaa35
{"states": ["s0", "s1", "s3", "s6"], "alphabets": "ab", "accepting_states": ["s1", "s6", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s6","s1":"s1","s3":"s3","s6":"s3"},"b":{"s0":"s6","s1":"s6","s3":"s3","s6":"s1"}}
Given the following FSM: a b s0 s6 s6 s1 s1 s6 s3 s3 s3 s6 s3 s1 Initial state: s0, and Accepting states: s1, s6, s0 What will be the state after reading the following input: baaabbbabbaaaabababbab?
s3
22
0f101f97-9f0a-4adf-9cda-d8c94a454406
455f46b3-4ded-484c-bfb0-a56ca7efaa35
{"states": ["s0", "s1", "s3", "s6"], "alphabets": "ab", "accepting_states": ["s1", "s6", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s6","s1":"s1","s3":"s3","s6":"s3"},"b":{"s0":"s6","s1":"s6","s3":"s3","s6":"s1"}}
Given the following FSM: a b s0 s6 s6 s1 s1 s6 s3 s3 s3 s6 s3 s1 Initial state: s0, and Accepting states: s1, s6, s0 What will be the state after reading the following input: baaabbbabbaaaabababbaba?
s3
23
206024b7-f58d-4359-8faa-7066180f7630
455f46b3-4ded-484c-bfb0-a56ca7efaa35
{"states": ["s0", "s1", "s3", "s6"], "alphabets": "ab", "accepting_states": ["s1", "s6", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s6","s1":"s1","s3":"s3","s6":"s3"},"b":{"s0":"s6","s1":"s6","s3":"s3","s6":"s1"}}
Given the following FSM: a b s0 s6 s6 s1 s1 s6 s3 s3 s3 s6 s3 s1 Initial state: s0, and Accepting states: s1, s6, s0 What will be the state after reading the following input: baaabbbabbaaaabababbabaa?
s3
24
6ca2bcab-69e1-4c82-8971-eea84039d073
455f46b3-4ded-484c-bfb0-a56ca7efaa35
{"states": ["s0", "s1", "s3", "s6"], "alphabets": "ab", "accepting_states": ["s1", "s6", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s6","s1":"s1","s3":"s3","s6":"s3"},"b":{"s0":"s6","s1":"s6","s3":"s3","s6":"s1"}}
Given the following FSM: a b s0 s6 s6 s1 s1 s6 s3 s3 s3 s6 s3 s1 Initial state: s0, and Accepting states: s1, s6, s0 What will be the state after reading the following input: baaabbbabbaaaabababbabaaa?
s3
25
9bdd9400-6937-40ac-92b5-790b05d318bc
455f46b3-4ded-484c-bfb0-a56ca7efaa35
{"states": ["s0", "s1", "s3", "s6"], "alphabets": "ab", "accepting_states": ["s1", "s6", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s6","s1":"s1","s3":"s3","s6":"s3"},"b":{"s0":"s6","s1":"s6","s3":"s3","s6":"s1"}}
Given the following FSM: a b s0 s6 s6 s1 s1 s6 s3 s3 s3 s6 s3 s1 Initial state: s0, and Accepting states: s1, s6, s0 What will be the state after reading the following input: baaabbbabbaaaabababbabaaaa?
s3
26
aa62b38c-5bc0-4127-bf91-0b0eee086492
455f46b3-4ded-484c-bfb0-a56ca7efaa35
{"states": ["s0", "s1", "s3", "s6"], "alphabets": "ab", "accepting_states": ["s1", "s6", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s6","s1":"s1","s3":"s3","s6":"s3"},"b":{"s0":"s6","s1":"s6","s3":"s3","s6":"s1"}}
Given the following FSM: a b s0 s6 s6 s1 s1 s6 s3 s3 s3 s6 s3 s1 Initial state: s0, and Accepting states: s1, s6, s0 What will be the state after reading the following input: baaabbbabbaaaabababbabaaaab?
s3
27
a5b2659f-726f-4d49-beee-77d312b5eb54
455f46b3-4ded-484c-bfb0-a56ca7efaa35
{"states": ["s0", "s1", "s3", "s6"], "alphabets": "ab", "accepting_states": ["s1", "s6", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s6","s1":"s1","s3":"s3","s6":"s3"},"b":{"s0":"s6","s1":"s6","s3":"s3","s6":"s1"}}
Given the following FSM: a b s0 s6 s6 s1 s1 s6 s3 s3 s3 s6 s3 s1 Initial state: s0, and Accepting states: s1, s6, s0 What will be the state after reading the following input: baaabbbabbaaaabababbabaaaaba?
s3
28
c91a5c30-2238-4b51-a504-0ac26c75a3de
455f46b3-4ded-484c-bfb0-a56ca7efaa35
{"states": ["s0", "s1", "s3", "s6"], "alphabets": "ab", "accepting_states": ["s1", "s6", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s6"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s6", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s6","s1":"s1","s3":"s3","s6":"s3"},"b":{"s0":"s6","s1":"s6","s3":"s3","s6":"s1"}}
Given the following FSM: a b s0 s6 s6 s1 s1 s6 s3 s3 s3 s6 s3 s1 Initial state: s0, and Accepting states: s1, s6, s0 What will be the state after reading the following input: baaabbbabbaaaabababbabaaaabab?
s3
29
76c8fa45-fa49-4fde-bd91-bba95003c2de
bdab1b2d-461d-4759-a116-9785da2952c4
{"states": ["s0"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0"},"b":{"s0":"s0"}}
Given the following FSM: a b s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: a?
s0
1
d9726ee1-8967-4fa2-ac87-e277d69359bf
bdab1b2d-461d-4759-a116-9785da2952c4
{"states": ["s0"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0"},"b":{"s0":"s0"}}
Given the following FSM: a b s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: ab?
s0
2
4ff769d1-387d-4516-acba-72c3e47c59a6
bdab1b2d-461d-4759-a116-9785da2952c4
{"states": ["s0"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0"},"b":{"s0":"s0"}}
Given the following FSM: a b s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: abb?
s0
3
64e71ad0-d86c-4ac6-a786-edec5e0ae492
bdab1b2d-461d-4759-a116-9785da2952c4
{"states": ["s0"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0"},"b":{"s0":"s0"}}
Given the following FSM: a b s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: abbb?
s0
4
253bc19e-2496-48c3-8104-19debfb051e5
bdab1b2d-461d-4759-a116-9785da2952c4
{"states": ["s0"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0"},"b":{"s0":"s0"}}
Given the following FSM: a b s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: abbba?
s0
5
4e8b8725-4921-48e5-814e-c425c9719ca4
bdab1b2d-461d-4759-a116-9785da2952c4
{"states": ["s0"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0"},"b":{"s0":"s0"}}
Given the following FSM: a b s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: abbbab?
s0
6
944e290d-d450-4ffe-aaf7-a76cdaf362fc
bdab1b2d-461d-4759-a116-9785da2952c4
{"states": ["s0"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0"},"b":{"s0":"s0"}}
Given the following FSM: a b s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: abbbabb?
s0
7
2995d138-eb3c-47fd-b775-a36937c2a9c4
bdab1b2d-461d-4759-a116-9785da2952c4
{"states": ["s0"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0"},"b":{"s0":"s0"}}
Given the following FSM: a b s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: abbbabbb?
s0
8
a9032632-c092-4231-84fd-3d0ba68e5bc1
bdab1b2d-461d-4759-a116-9785da2952c4
{"states": ["s0"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0"},"b":{"s0":"s0"}}
Given the following FSM: a b s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: abbbabbba?
s0
9
55d5fbec-6254-410e-b653-67ae1be35128
bdab1b2d-461d-4759-a116-9785da2952c4
{"states": ["s0"], "alphabets": "ab", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0"},"b":{"s0":"s0"}}
Given the following FSM: a b s0 s0 s0 Initial state: s0, and Accepting states: s0 What will be the state after reading the following input: abbbabbbaa?
s0
10