query_id
stringlengths
36
36
fsm_id
stringlengths
36
36
fsm_json
stringlengths
160
2.88k
difficulty_level
int64
1
3
transition_matrix
stringlengths
17
517
query
stringlengths
101
358
answer
stringclasses
13 values
substring_index
int64
1
29
6ac9fa0f-1e50-4d2a-8125-80707dd3c6f3
79431a61-0eef-4cca-a303-0898ad4b0df9
{"states": ["s0", "s3", "s4"], "alphabets": "a", "accepting_states": ["s0", "s4", "s3"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s4"]}]}
2
{"a":{"s0":"s3","s3":"s4","s4":"s4"}}
Given the following FSM: a s0 s3 s3 s4 s4 s4 What will be the state after reading the following input: aaaaaaaaaaaaaaaaaaaaaaaaaaa?
s4
27
b573e431-2702-4b69-831d-95d0ee44f7c5
79431a61-0eef-4cca-a303-0898ad4b0df9
{"states": ["s0", "s3", "s4"], "alphabets": "a", "accepting_states": ["s0", "s4", "s3"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s4"]}]}
2
{"a":{"s0":"s3","s3":"s4","s4":"s4"}}
Given the following FSM: a s0 s3 s3 s4 s4 s4 What will be the state after reading the following input: aaaaaaaaaaaaaaaaaaaaaaaaaaaa?
s4
28
b467a7a3-46ee-4523-bb45-8cd7b8fe0496
79431a61-0eef-4cca-a303-0898ad4b0df9
{"states": ["s0", "s3", "s4"], "alphabets": "a", "accepting_states": ["s0", "s4", "s3"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s4"]}]}
2
{"a":{"s0":"s3","s3":"s4","s4":"s4"}}
Given the following FSM: a s0 s3 s3 s4 s4 s4 What will be the state after reading the following input: aaaaaaaaaaaaaaaaaaaaaaaaaaaaa?
s4
29
b7c95ed4-5a60-4c8f-9738-005778193d27
f7c89ace-5d00-4393-94e3-cd3e0cf349d1
{"states": ["s0", "s1", "s2"], "alphabets": "a", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s2","s2":"s0"}}
Given the following FSM: a s0 s1 s1 s2 s2 s0 What will be the state after reading the following input: a?
s1
1
7ba42e69-a49d-46fc-b5e4-ede2e425653a
f7c89ace-5d00-4393-94e3-cd3e0cf349d1
{"states": ["s0", "s1", "s2"], "alphabets": "a", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s2","s2":"s0"}}
Given the following FSM: a s0 s1 s1 s2 s2 s0 What will be the state after reading the following input: aa?
s2
2
7c17fc77-8449-4e10-b3cf-170b374c7c20
f7c89ace-5d00-4393-94e3-cd3e0cf349d1
{"states": ["s0", "s1", "s2"], "alphabets": "a", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s2","s2":"s0"}}
Given the following FSM: a s0 s1 s1 s2 s2 s0 What will be the state after reading the following input: aaa?
s0
3
d42bf3de-102f-494a-bbe1-9659dcfc47b0
f7c89ace-5d00-4393-94e3-cd3e0cf349d1
{"states": ["s0", "s1", "s2"], "alphabets": "a", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s2","s2":"s0"}}
Given the following FSM: a s0 s1 s1 s2 s2 s0 What will be the state after reading the following input: aaaa?
s1
4
c436e467-2dca-43e3-8d65-129196b3fddd
f7c89ace-5d00-4393-94e3-cd3e0cf349d1
{"states": ["s0", "s1", "s2"], "alphabets": "a", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s2","s2":"s0"}}
Given the following FSM: a s0 s1 s1 s2 s2 s0 What will be the state after reading the following input: aaaaa?
s2
5
113f5905-50b1-4174-b6fe-af0e9dea4c46
f7c89ace-5d00-4393-94e3-cd3e0cf349d1
{"states": ["s0", "s1", "s2"], "alphabets": "a", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s2","s2":"s0"}}
Given the following FSM: a s0 s1 s1 s2 s2 s0 What will be the state after reading the following input: aaaaaa?
s0
6
0e2d357f-cbee-40f1-b526-b14720bccba4
f7c89ace-5d00-4393-94e3-cd3e0cf349d1
{"states": ["s0", "s1", "s2"], "alphabets": "a", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s2","s2":"s0"}}
Given the following FSM: a s0 s1 s1 s2 s2 s0 What will be the state after reading the following input: aaaaaaa?
s1
7
ee5d7a7f-5220-446c-b389-bebb9f09a215
f7c89ace-5d00-4393-94e3-cd3e0cf349d1
{"states": ["s0", "s1", "s2"], "alphabets": "a", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s2","s2":"s0"}}
Given the following FSM: a s0 s1 s1 s2 s2 s0 What will be the state after reading the following input: aaaaaaaa?
s2
8
07cb9892-32df-46b3-a000-c149bcb6c95d
f7c89ace-5d00-4393-94e3-cd3e0cf349d1
{"states": ["s0", "s1", "s2"], "alphabets": "a", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s2","s2":"s0"}}
Given the following FSM: a s0 s1 s1 s2 s2 s0 What will be the state after reading the following input: aaaaaaaaa?
s0
9
809aac7d-d13e-45d8-b532-66917211f721
f7c89ace-5d00-4393-94e3-cd3e0cf349d1
{"states": ["s0", "s1", "s2"], "alphabets": "a", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s2","s2":"s0"}}
Given the following FSM: a s0 s1 s1 s2 s2 s0 What will be the state after reading the following input: aaaaaaaaaa?
s1
10
f9c2cc6a-989b-443a-a1e2-d4d11e7b787c
f7c89ace-5d00-4393-94e3-cd3e0cf349d1
{"states": ["s0", "s1", "s2"], "alphabets": "a", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s2","s2":"s0"}}
Given the following FSM: a s0 s1 s1 s2 s2 s0 What will be the state after reading the following input: aaaaaaaaaaa?
s2
11
32656e3f-7f40-4b3e-85c7-f1cde57fef74
f7c89ace-5d00-4393-94e3-cd3e0cf349d1
{"states": ["s0", "s1", "s2"], "alphabets": "a", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s2","s2":"s0"}}
Given the following FSM: a s0 s1 s1 s2 s2 s0 What will be the state after reading the following input: aaaaaaaaaaaa?
s0
12
3f4684fd-1ac1-4eb6-ab38-63918b8cad2f
f7c89ace-5d00-4393-94e3-cd3e0cf349d1
{"states": ["s0", "s1", "s2"], "alphabets": "a", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s2","s2":"s0"}}
Given the following FSM: a s0 s1 s1 s2 s2 s0 What will be the state after reading the following input: aaaaaaaaaaaaa?
s1
13
e2ef4063-9f19-4437-bc38-3f7f7337f2f0
f7c89ace-5d00-4393-94e3-cd3e0cf349d1
{"states": ["s0", "s1", "s2"], "alphabets": "a", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s2","s2":"s0"}}
Given the following FSM: a s0 s1 s1 s2 s2 s0 What will be the state after reading the following input: aaaaaaaaaaaaaa?
s2
14
accf66a1-a6d2-4a85-9699-7b797617abcc
f7c89ace-5d00-4393-94e3-cd3e0cf349d1
{"states": ["s0", "s1", "s2"], "alphabets": "a", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s2","s2":"s0"}}
Given the following FSM: a s0 s1 s1 s2 s2 s0 What will be the state after reading the following input: aaaaaaaaaaaaaaa?
s0
15
bb45c390-640d-48e9-8363-f405fe842633
f7c89ace-5d00-4393-94e3-cd3e0cf349d1
{"states": ["s0", "s1", "s2"], "alphabets": "a", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s2","s2":"s0"}}
Given the following FSM: a s0 s1 s1 s2 s2 s0 What will be the state after reading the following input: aaaaaaaaaaaaaaaa?
s1
16
b7d6117c-fd97-487d-a38e-fc065e64a0aa
f7c89ace-5d00-4393-94e3-cd3e0cf349d1
{"states": ["s0", "s1", "s2"], "alphabets": "a", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s2","s2":"s0"}}
Given the following FSM: a s0 s1 s1 s2 s2 s0 What will be the state after reading the following input: aaaaaaaaaaaaaaaaa?
s2
17
b6e0147f-3df6-42e0-aa47-44b59fbd769f
f7c89ace-5d00-4393-94e3-cd3e0cf349d1
{"states": ["s0", "s1", "s2"], "alphabets": "a", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s2","s2":"s0"}}
Given the following FSM: a s0 s1 s1 s2 s2 s0 What will be the state after reading the following input: aaaaaaaaaaaaaaaaaa?
s0
18
1b7cedc1-3d45-4249-afba-c12b1d5ab110
f7c89ace-5d00-4393-94e3-cd3e0cf349d1
{"states": ["s0", "s1", "s2"], "alphabets": "a", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s2","s2":"s0"}}
Given the following FSM: a s0 s1 s1 s2 s2 s0 What will be the state after reading the following input: aaaaaaaaaaaaaaaaaaa?
s1
19
1c419e60-e56f-4e72-9dff-8a5c7da40452
f7c89ace-5d00-4393-94e3-cd3e0cf349d1
{"states": ["s0", "s1", "s2"], "alphabets": "a", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s2","s2":"s0"}}
Given the following FSM: a s0 s1 s1 s2 s2 s0 What will be the state after reading the following input: aaaaaaaaaaaaaaaaaaaa?
s2
20
f93fe4d1-280a-4d8b-a438-32496c6d4df6
f7c89ace-5d00-4393-94e3-cd3e0cf349d1
{"states": ["s0", "s1", "s2"], "alphabets": "a", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s2","s2":"s0"}}
Given the following FSM: a s0 s1 s1 s2 s2 s0 What will be the state after reading the following input: aaaaaaaaaaaaaaaaaaaaa?
s0
21
6ed0e71a-7878-4e0b-9843-d9426e4f4e43
f7c89ace-5d00-4393-94e3-cd3e0cf349d1
{"states": ["s0", "s1", "s2"], "alphabets": "a", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s2","s2":"s0"}}
Given the following FSM: a s0 s1 s1 s2 s2 s0 What will be the state after reading the following input: aaaaaaaaaaaaaaaaaaaaaa?
s1
22
020e6cfe-6349-46ed-9251-f9106623212a
f7c89ace-5d00-4393-94e3-cd3e0cf349d1
{"states": ["s0", "s1", "s2"], "alphabets": "a", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s2","s2":"s0"}}
Given the following FSM: a s0 s1 s1 s2 s2 s0 What will be the state after reading the following input: aaaaaaaaaaaaaaaaaaaaaaa?
s2
23
0a624547-052a-45d0-b662-506dee896d03
f7c89ace-5d00-4393-94e3-cd3e0cf349d1
{"states": ["s0", "s1", "s2"], "alphabets": "a", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s2","s2":"s0"}}
Given the following FSM: a s0 s1 s1 s2 s2 s0 What will be the state after reading the following input: aaaaaaaaaaaaaaaaaaaaaaaa?
s0
24
4b3038b8-1ec6-4582-8b3a-27771845054d
f7c89ace-5d00-4393-94e3-cd3e0cf349d1
{"states": ["s0", "s1", "s2"], "alphabets": "a", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s2","s2":"s0"}}
Given the following FSM: a s0 s1 s1 s2 s2 s0 What will be the state after reading the following input: aaaaaaaaaaaaaaaaaaaaaaaaa?
s1
25
bd170622-9d1f-45e3-953c-a919e6fc2a76
f7c89ace-5d00-4393-94e3-cd3e0cf349d1
{"states": ["s0", "s1", "s2"], "alphabets": "a", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s2","s2":"s0"}}
Given the following FSM: a s0 s1 s1 s2 s2 s0 What will be the state after reading the following input: aaaaaaaaaaaaaaaaaaaaaaaaaa?
s2
26
d551185b-811f-4f5c-957b-147f05e11bdc
f7c89ace-5d00-4393-94e3-cd3e0cf349d1
{"states": ["s0", "s1", "s2"], "alphabets": "a", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s2","s2":"s0"}}
Given the following FSM: a s0 s1 s1 s2 s2 s0 What will be the state after reading the following input: aaaaaaaaaaaaaaaaaaaaaaaaaaa?
s0
27
09b3ce44-039d-4e78-aa68-7b71d76d6ce7
f7c89ace-5d00-4393-94e3-cd3e0cf349d1
{"states": ["s0", "s1", "s2"], "alphabets": "a", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s2","s2":"s0"}}
Given the following FSM: a s0 s1 s1 s2 s2 s0 What will be the state after reading the following input: aaaaaaaaaaaaaaaaaaaaaaaaaaaa?
s1
28
e24c2aff-915e-49d1-bd76-d373948360a5
f7c89ace-5d00-4393-94e3-cd3e0cf349d1
{"states": ["s0", "s1", "s2"], "alphabets": "a", "accepting_states": ["s0", "s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}]}
2
{"a":{"s0":"s1","s1":"s2","s2":"s0"}}
Given the following FSM: a s0 s1 s1 s2 s2 s0 What will be the state after reading the following input: aaaaaaaaaaaaaaaaaaaaaaaaaaaaa?
s2
29
f0a7ee70-de5e-4fd2-8494-e53219ca02ea
10db07c6-d4e1-4275-b78b-ad02ac1e0ec7
{"states": ["s0", "s1", "s5", "s8"], "alphabets": "a", "accepting_states": ["s8", "s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s5"]}]}
3
{"a":{"s0":"s1","s1":"s5","s5":"s8","s8":"s5"}}
Given the following FSM: a s0 s1 s1 s5 s5 s8 s8 s5 What will be the state after reading the following input: a?
s1
1
3ddb4e4c-5ffc-4860-9b74-a471bbc08e5e
10db07c6-d4e1-4275-b78b-ad02ac1e0ec7
{"states": ["s0", "s1", "s5", "s8"], "alphabets": "a", "accepting_states": ["s8", "s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s5"]}]}
3
{"a":{"s0":"s1","s1":"s5","s5":"s8","s8":"s5"}}
Given the following FSM: a s0 s1 s1 s5 s5 s8 s8 s5 What will be the state after reading the following input: aa?
s5
2
cf6e2b1a-11c1-4d16-b36f-0825788d9add
10db07c6-d4e1-4275-b78b-ad02ac1e0ec7
{"states": ["s0", "s1", "s5", "s8"], "alphabets": "a", "accepting_states": ["s8", "s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s5"]}]}
3
{"a":{"s0":"s1","s1":"s5","s5":"s8","s8":"s5"}}
Given the following FSM: a s0 s1 s1 s5 s5 s8 s8 s5 What will be the state after reading the following input: aaa?
s8
3
b9b2d5e0-445f-4bec-b746-71554a53a08a
10db07c6-d4e1-4275-b78b-ad02ac1e0ec7
{"states": ["s0", "s1", "s5", "s8"], "alphabets": "a", "accepting_states": ["s8", "s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s5"]}]}
3
{"a":{"s0":"s1","s1":"s5","s5":"s8","s8":"s5"}}
Given the following FSM: a s0 s1 s1 s5 s5 s8 s8 s5 What will be the state after reading the following input: aaaa?
s5
4
24e1f7be-db00-44df-83b1-2927f632080c
10db07c6-d4e1-4275-b78b-ad02ac1e0ec7
{"states": ["s0", "s1", "s5", "s8"], "alphabets": "a", "accepting_states": ["s8", "s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s5"]}]}
3
{"a":{"s0":"s1","s1":"s5","s5":"s8","s8":"s5"}}
Given the following FSM: a s0 s1 s1 s5 s5 s8 s8 s5 What will be the state after reading the following input: aaaaa?
s8
5
b21fcdfa-48cd-4e9c-8fc9-704d989c1fc6
10db07c6-d4e1-4275-b78b-ad02ac1e0ec7
{"states": ["s0", "s1", "s5", "s8"], "alphabets": "a", "accepting_states": ["s8", "s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s5"]}]}
3
{"a":{"s0":"s1","s1":"s5","s5":"s8","s8":"s5"}}
Given the following FSM: a s0 s1 s1 s5 s5 s8 s8 s5 What will be the state after reading the following input: aaaaaa?
s5
6
5f6e4b3b-4cc3-4cc3-96f0-6098ace92185
10db07c6-d4e1-4275-b78b-ad02ac1e0ec7
{"states": ["s0", "s1", "s5", "s8"], "alphabets": "a", "accepting_states": ["s8", "s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s5"]}]}
3
{"a":{"s0":"s1","s1":"s5","s5":"s8","s8":"s5"}}
Given the following FSM: a s0 s1 s1 s5 s5 s8 s8 s5 What will be the state after reading the following input: aaaaaaa?
s8
7
1c5c28c6-c07e-4b86-a79b-82a459f5bc1a
10db07c6-d4e1-4275-b78b-ad02ac1e0ec7
{"states": ["s0", "s1", "s5", "s8"], "alphabets": "a", "accepting_states": ["s8", "s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s5"]}]}
3
{"a":{"s0":"s1","s1":"s5","s5":"s8","s8":"s5"}}
Given the following FSM: a s0 s1 s1 s5 s5 s8 s8 s5 What will be the state after reading the following input: aaaaaaaa?
s5
8
f3b1ccb0-f7e1-4907-8187-8494aca816c4
10db07c6-d4e1-4275-b78b-ad02ac1e0ec7
{"states": ["s0", "s1", "s5", "s8"], "alphabets": "a", "accepting_states": ["s8", "s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s5"]}]}
3
{"a":{"s0":"s1","s1":"s5","s5":"s8","s8":"s5"}}
Given the following FSM: a s0 s1 s1 s5 s5 s8 s8 s5 What will be the state after reading the following input: aaaaaaaaa?
s8
9
37adc006-73c7-4df4-ad95-179f4d71fe91
10db07c6-d4e1-4275-b78b-ad02ac1e0ec7
{"states": ["s0", "s1", "s5", "s8"], "alphabets": "a", "accepting_states": ["s8", "s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s5"]}]}
3
{"a":{"s0":"s1","s1":"s5","s5":"s8","s8":"s5"}}
Given the following FSM: a s0 s1 s1 s5 s5 s8 s8 s5 What will be the state after reading the following input: aaaaaaaaaa?
s5
10
8bf94ec2-1be0-4a5b-b277-978cbd6e91d0
10db07c6-d4e1-4275-b78b-ad02ac1e0ec7
{"states": ["s0", "s1", "s5", "s8"], "alphabets": "a", "accepting_states": ["s8", "s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s5"]}]}
3
{"a":{"s0":"s1","s1":"s5","s5":"s8","s8":"s5"}}
Given the following FSM: a s0 s1 s1 s5 s5 s8 s8 s5 What will be the state after reading the following input: aaaaaaaaaaa?
s8
11
f00926f2-c7f6-4888-80c4-d5f35145b1fa
10db07c6-d4e1-4275-b78b-ad02ac1e0ec7
{"states": ["s0", "s1", "s5", "s8"], "alphabets": "a", "accepting_states": ["s8", "s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s5"]}]}
3
{"a":{"s0":"s1","s1":"s5","s5":"s8","s8":"s5"}}
Given the following FSM: a s0 s1 s1 s5 s5 s8 s8 s5 What will be the state after reading the following input: aaaaaaaaaaaa?
s5
12
fd6bc54d-f558-43dd-b20f-0a6122e74530
10db07c6-d4e1-4275-b78b-ad02ac1e0ec7
{"states": ["s0", "s1", "s5", "s8"], "alphabets": "a", "accepting_states": ["s8", "s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s5"]}]}
3
{"a":{"s0":"s1","s1":"s5","s5":"s8","s8":"s5"}}
Given the following FSM: a s0 s1 s1 s5 s5 s8 s8 s5 What will be the state after reading the following input: aaaaaaaaaaaaa?
s8
13
601bc0ac-8160-4124-88a7-0af2a30e2d02
10db07c6-d4e1-4275-b78b-ad02ac1e0ec7
{"states": ["s0", "s1", "s5", "s8"], "alphabets": "a", "accepting_states": ["s8", "s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s5"]}]}
3
{"a":{"s0":"s1","s1":"s5","s5":"s8","s8":"s5"}}
Given the following FSM: a s0 s1 s1 s5 s5 s8 s8 s5 What will be the state after reading the following input: aaaaaaaaaaaaaa?
s5
14
1f704ed7-b027-4582-9967-d809d643dc9c
10db07c6-d4e1-4275-b78b-ad02ac1e0ec7
{"states": ["s0", "s1", "s5", "s8"], "alphabets": "a", "accepting_states": ["s8", "s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s5"]}]}
3
{"a":{"s0":"s1","s1":"s5","s5":"s8","s8":"s5"}}
Given the following FSM: a s0 s1 s1 s5 s5 s8 s8 s5 What will be the state after reading the following input: aaaaaaaaaaaaaaa?
s8
15
aee2da40-caaa-4463-951c-8be46bdc81db
10db07c6-d4e1-4275-b78b-ad02ac1e0ec7
{"states": ["s0", "s1", "s5", "s8"], "alphabets": "a", "accepting_states": ["s8", "s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s5"]}]}
3
{"a":{"s0":"s1","s1":"s5","s5":"s8","s8":"s5"}}
Given the following FSM: a s0 s1 s1 s5 s5 s8 s8 s5 What will be the state after reading the following input: aaaaaaaaaaaaaaaa?
s5
16
48c736d0-e56a-42ef-9f9a-7d144fc22a59
10db07c6-d4e1-4275-b78b-ad02ac1e0ec7
{"states": ["s0", "s1", "s5", "s8"], "alphabets": "a", "accepting_states": ["s8", "s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s5"]}]}
3
{"a":{"s0":"s1","s1":"s5","s5":"s8","s8":"s5"}}
Given the following FSM: a s0 s1 s1 s5 s5 s8 s8 s5 What will be the state after reading the following input: aaaaaaaaaaaaaaaaa?
s8
17
87ca7e81-065e-4787-8d45-8017ed996a0e
10db07c6-d4e1-4275-b78b-ad02ac1e0ec7
{"states": ["s0", "s1", "s5", "s8"], "alphabets": "a", "accepting_states": ["s8", "s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s5"]}]}
3
{"a":{"s0":"s1","s1":"s5","s5":"s8","s8":"s5"}}
Given the following FSM: a s0 s1 s1 s5 s5 s8 s8 s5 What will be the state after reading the following input: aaaaaaaaaaaaaaaaaa?
s5
18
3b409b45-3f92-4d65-96c7-4db171d97f0b
10db07c6-d4e1-4275-b78b-ad02ac1e0ec7
{"states": ["s0", "s1", "s5", "s8"], "alphabets": "a", "accepting_states": ["s8", "s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s5"]}]}
3
{"a":{"s0":"s1","s1":"s5","s5":"s8","s8":"s5"}}
Given the following FSM: a s0 s1 s1 s5 s5 s8 s8 s5 What will be the state after reading the following input: aaaaaaaaaaaaaaaaaaa?
s8
19
3931a2b7-752a-450a-b233-590408ec5f9a
10db07c6-d4e1-4275-b78b-ad02ac1e0ec7
{"states": ["s0", "s1", "s5", "s8"], "alphabets": "a", "accepting_states": ["s8", "s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s5"]}]}
3
{"a":{"s0":"s1","s1":"s5","s5":"s8","s8":"s5"}}
Given the following FSM: a s0 s1 s1 s5 s5 s8 s8 s5 What will be the state after reading the following input: aaaaaaaaaaaaaaaaaaaa?
s5
20
8c425206-a107-4d11-b12b-8913f4839437
10db07c6-d4e1-4275-b78b-ad02ac1e0ec7
{"states": ["s0", "s1", "s5", "s8"], "alphabets": "a", "accepting_states": ["s8", "s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s5"]}]}
3
{"a":{"s0":"s1","s1":"s5","s5":"s8","s8":"s5"}}
Given the following FSM: a s0 s1 s1 s5 s5 s8 s8 s5 What will be the state after reading the following input: aaaaaaaaaaaaaaaaaaaaa?
s8
21
24cb90d3-d2ab-4403-af87-d853ef065d0c
10db07c6-d4e1-4275-b78b-ad02ac1e0ec7
{"states": ["s0", "s1", "s5", "s8"], "alphabets": "a", "accepting_states": ["s8", "s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s5"]}]}
3
{"a":{"s0":"s1","s1":"s5","s5":"s8","s8":"s5"}}
Given the following FSM: a s0 s1 s1 s5 s5 s8 s8 s5 What will be the state after reading the following input: aaaaaaaaaaaaaaaaaaaaaa?
s5
22
9d4a3cf0-6c3c-4d1d-8985-e270b51ac972
10db07c6-d4e1-4275-b78b-ad02ac1e0ec7
{"states": ["s0", "s1", "s5", "s8"], "alphabets": "a", "accepting_states": ["s8", "s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s5"]}]}
3
{"a":{"s0":"s1","s1":"s5","s5":"s8","s8":"s5"}}
Given the following FSM: a s0 s1 s1 s5 s5 s8 s8 s5 What will be the state after reading the following input: aaaaaaaaaaaaaaaaaaaaaaa?
s8
23
bcac699a-56a8-4c65-8734-72aa770d27fd
10db07c6-d4e1-4275-b78b-ad02ac1e0ec7
{"states": ["s0", "s1", "s5", "s8"], "alphabets": "a", "accepting_states": ["s8", "s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s5"]}]}
3
{"a":{"s0":"s1","s1":"s5","s5":"s8","s8":"s5"}}
Given the following FSM: a s0 s1 s1 s5 s5 s8 s8 s5 What will be the state after reading the following input: aaaaaaaaaaaaaaaaaaaaaaaa?
s5
24
a3c69180-1347-4734-96f7-09f62c9954a8
10db07c6-d4e1-4275-b78b-ad02ac1e0ec7
{"states": ["s0", "s1", "s5", "s8"], "alphabets": "a", "accepting_states": ["s8", "s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s5"]}]}
3
{"a":{"s0":"s1","s1":"s5","s5":"s8","s8":"s5"}}
Given the following FSM: a s0 s1 s1 s5 s5 s8 s8 s5 What will be the state after reading the following input: aaaaaaaaaaaaaaaaaaaaaaaaa?
s8
25
8072a7a7-08c9-4131-ac92-f9a4bc8a1927
10db07c6-d4e1-4275-b78b-ad02ac1e0ec7
{"states": ["s0", "s1", "s5", "s8"], "alphabets": "a", "accepting_states": ["s8", "s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s5"]}]}
3
{"a":{"s0":"s1","s1":"s5","s5":"s8","s8":"s5"}}
Given the following FSM: a s0 s1 s1 s5 s5 s8 s8 s5 What will be the state after reading the following input: aaaaaaaaaaaaaaaaaaaaaaaaaa?
s5
26
a928f3d9-eb61-4c0e-a43c-ab7e1637795d
10db07c6-d4e1-4275-b78b-ad02ac1e0ec7
{"states": ["s0", "s1", "s5", "s8"], "alphabets": "a", "accepting_states": ["s8", "s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s5"]}]}
3
{"a":{"s0":"s1","s1":"s5","s5":"s8","s8":"s5"}}
Given the following FSM: a s0 s1 s1 s5 s5 s8 s8 s5 What will be the state after reading the following input: aaaaaaaaaaaaaaaaaaaaaaaaaaa?
s8
27
a5004916-e86b-4c0a-831f-bb36dbe0067c
10db07c6-d4e1-4275-b78b-ad02ac1e0ec7
{"states": ["s0", "s1", "s5", "s8"], "alphabets": "a", "accepting_states": ["s8", "s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s5"]}]}
3
{"a":{"s0":"s1","s1":"s5","s5":"s8","s8":"s5"}}
Given the following FSM: a s0 s1 s1 s5 s5 s8 s8 s5 What will be the state after reading the following input: aaaaaaaaaaaaaaaaaaaaaaaaaaaa?
s5
28
cc34c2bb-13a5-45e5-8df6-304f14d0f684
10db07c6-d4e1-4275-b78b-ad02ac1e0ec7
{"states": ["s0", "s1", "s5", "s8"], "alphabets": "a", "accepting_states": ["s8", "s5"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s5"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s5"]}]}
3
{"a":{"s0":"s1","s1":"s5","s5":"s8","s8":"s5"}}
Given the following FSM: a s0 s1 s1 s5 s5 s8 s8 s5 What will be the state after reading the following input: aaaaaaaaaaaaaaaaaaaaaaaaaaaaa?
s8
29
b478d7fd-5416-4f58-b92f-87ef59d93ee5
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 What will be the state after reading the following input: b?
s0
1
59f80cf0-c6f5-4470-866d-3a68b300a5d6
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 What will be the state after reading the following input: bb?
s0
2
94b5df9b-5d6b-4945-a989-00178088057f
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 What will be the state after reading the following input: bbb?
s0
3
29db12c7-6690-422e-8a8c-c18f941cdd2b
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 What will be the state after reading the following input: bbbb?
s0
4
fa41e38b-33dd-4c3b-ae6f-9d632c9fc7a0
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 What will be the state after reading the following input: bbbba?
s1
5
1a10183d-4384-4861-ad85-99c9edca5282
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 What will be the state after reading the following input: bbbbaa?
s1
6
b53bec2f-fcd2-4f4e-9788-84a650700687
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 What will be the state after reading the following input: bbbbaaa?
s1
7
1538634d-6798-4a21-abd7-fc1eea729199
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 What will be the state after reading the following input: bbbbaaaa?
s1
8
811a857b-9533-44d6-b8b4-ed6d3f268ed9
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 What will be the state after reading the following input: bbbbaaaab?
s0
9
daf0d591-7db6-4470-9b71-82ba3ec8dcef
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 What will be the state after reading the following input: bbbbaaaabb?
s0
10
b8a681ed-cfda-49ad-ad8e-034e88e29d47
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 What will be the state after reading the following input: bbbbaaaabba?
s1
11
b0e5d1c5-d1d9-4bbf-b00b-40ac4e88fefe
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 What will be the state after reading the following input: bbbbaaaabbaa?
s1
12
8e622dc7-084a-4cb8-ab1a-eb7638c3424a
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 What will be the state after reading the following input: bbbbaaaabbaaa?
s1
13
6bab9b8a-ede3-4767-b64a-3f5b2ae7cf40
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 What will be the state after reading the following input: bbbbaaaabbaaab?
s0
14
9d36f4c7-d062-4817-a37e-a54a82aa4170
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 What will be the state after reading the following input: bbbbaaaabbaaabb?
s0
15
a53fec39-16c2-4a1c-99c6-a05a285168b6
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 What will be the state after reading the following input: bbbbaaaabbaaabbb?
s0
16
ced1d16f-d0b3-4535-91b7-01cd376781c4
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 What will be the state after reading the following input: bbbbaaaabbaaabbba?
s1
17
6da1dee5-bb0a-4599-8a7e-706243837c00
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 What will be the state after reading the following input: bbbbaaaabbaaabbbaa?
s1
18
19e82d9d-275a-4f01-9f07-87dfc3662c42
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 What will be the state after reading the following input: bbbbaaaabbaaabbbaab?
s0
19
0d1cb41f-4f2d-477e-98b9-eca4ef0cedb3
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 What will be the state after reading the following input: bbbbaaaabbaaabbbaabb?
s0
20
28212ce9-666c-4dc2-b432-5f0b12cfa9c1
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 What will be the state after reading the following input: bbbbaaaabbaaabbbaabbb?
s0
21
d1d96ec1-89d0-4b46-a625-2b5e4eedfcef
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 What will be the state after reading the following input: bbbbaaaabbaaabbbaabbba?
s1
22
bb63de0d-50d8-4bf6-a698-20e79abae332
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 What will be the state after reading the following input: bbbbaaaabbaaabbbaabbbaa?
s1
23
b7999bdb-7d14-46b9-9f7f-02a9fce69951
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 What will be the state after reading the following input: bbbbaaaabbaaabbbaabbbaaa?
s1
24
9ca1b350-37ee-432c-a229-58991603d093
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 What will be the state after reading the following input: bbbbaaaabbaaabbbaabbbaaab?
s0
25
aa058000-db95-4bfe-9e92-da9baf2b9c26
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 What will be the state after reading the following input: bbbbaaaabbaaabbbaabbbaaabb?
s0
26
c19a1dc3-723a-4ae7-a97c-98c671c66dfd
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 What will be the state after reading the following input: bbbbaaaabbaaabbbaabbbaaabba?
s1
27
f83e5324-21ab-45f2-964b-5d0b96915e5b
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 What will be the state after reading the following input: bbbbaaaabbaaabbbaabbbaaabbab?
s0
28
ba7fe55a-c74f-4b11-afa9-7c16e6f9d7d1
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 What will be the state after reading the following input: bbbbaaaabbaaabbbaabbbaaabbabb?
s0
29
afb0f7cb-73a9-4e3c-bf34-0ef0f7cd4101
350371bb-6ef3-46c2-85ba-5423c06543d6
{"states": ["s0", "s1", "s3"], "alphabets": "ab", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s3","s1":"s0","s3":"s0"},"b":{"s0":"s1","s1":"s0","s3":"s1"}}
Given the following FSM: a b s0 s3 s1 s1 s0 s0 s3 s0 s1 What will be the state after reading the following input: a?
s3
1
8bc2d86b-0404-4a20-959f-d9882920f079
350371bb-6ef3-46c2-85ba-5423c06543d6
{"states": ["s0", "s1", "s3"], "alphabets": "ab", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s3","s1":"s0","s3":"s0"},"b":{"s0":"s1","s1":"s0","s3":"s1"}}
Given the following FSM: a b s0 s3 s1 s1 s0 s0 s3 s0 s1 What will be the state after reading the following input: aa?
s0
2
46e5c648-2f1c-4667-b2cd-2f497591bf1a
350371bb-6ef3-46c2-85ba-5423c06543d6
{"states": ["s0", "s1", "s3"], "alphabets": "ab", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s3","s1":"s0","s3":"s0"},"b":{"s0":"s1","s1":"s0","s3":"s1"}}
Given the following FSM: a b s0 s3 s1 s1 s0 s0 s3 s0 s1 What will be the state after reading the following input: aab?
s1
3
8f3adc33-1987-4c96-b110-2beb97cd5dfd
350371bb-6ef3-46c2-85ba-5423c06543d6
{"states": ["s0", "s1", "s3"], "alphabets": "ab", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s3","s1":"s0","s3":"s0"},"b":{"s0":"s1","s1":"s0","s3":"s1"}}
Given the following FSM: a b s0 s3 s1 s1 s0 s0 s3 s0 s1 What will be the state after reading the following input: aaba?
s0
4
52c9cce8-fa53-4898-b22d-64412416e357
350371bb-6ef3-46c2-85ba-5423c06543d6
{"states": ["s0", "s1", "s3"], "alphabets": "ab", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s3","s1":"s0","s3":"s0"},"b":{"s0":"s1","s1":"s0","s3":"s1"}}
Given the following FSM: a b s0 s3 s1 s1 s0 s0 s3 s0 s1 What will be the state after reading the following input: aabab?
s1
5
91788ab1-ad4a-4037-bc8b-6a64f8002bf2
350371bb-6ef3-46c2-85ba-5423c06543d6
{"states": ["s0", "s1", "s3"], "alphabets": "ab", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s3","s1":"s0","s3":"s0"},"b":{"s0":"s1","s1":"s0","s3":"s1"}}
Given the following FSM: a b s0 s3 s1 s1 s0 s0 s3 s0 s1 What will be the state after reading the following input: aababb?
s0
6
bd59516a-7425-4448-a607-495fadb26156
350371bb-6ef3-46c2-85ba-5423c06543d6
{"states": ["s0", "s1", "s3"], "alphabets": "ab", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s3","s1":"s0","s3":"s0"},"b":{"s0":"s1","s1":"s0","s3":"s1"}}
Given the following FSM: a b s0 s3 s1 s1 s0 s0 s3 s0 s1 What will be the state after reading the following input: aababbb?
s1
7
4639b134-2d2d-4172-971d-591ae9df6d50
350371bb-6ef3-46c2-85ba-5423c06543d6
{"states": ["s0", "s1", "s3"], "alphabets": "ab", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s3","s1":"s0","s3":"s0"},"b":{"s0":"s1","s1":"s0","s3":"s1"}}
Given the following FSM: a b s0 s3 s1 s1 s0 s0 s3 s0 s1 What will be the state after reading the following input: aababbbb?
s0
8
69830883-765b-410e-940e-02620a74f056
350371bb-6ef3-46c2-85ba-5423c06543d6
{"states": ["s0", "s1", "s3"], "alphabets": "ab", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s3","s1":"s0","s3":"s0"},"b":{"s0":"s1","s1":"s0","s3":"s1"}}
Given the following FSM: a b s0 s3 s1 s1 s0 s0 s3 s0 s1 What will be the state after reading the following input: aababbbba?
s3
9
65d3ccda-6f06-421e-a2fe-76501e7bb360
350371bb-6ef3-46c2-85ba-5423c06543d6
{"states": ["s0", "s1", "s3"], "alphabets": "ab", "accepting_states": ["s1"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s3","s1":"s0","s3":"s0"},"b":{"s0":"s1","s1":"s0","s3":"s1"}}
Given the following FSM: a b s0 s3 s1 s1 s0 s0 s3 s0 s1 What will be the state after reading the following input: aababbbbaa?
s0
10