Question is:
Determinize this automaton by breakpoint construction.
Submit the solution in the following form:
labels 0:s1; 1:s2,s3; 2:; 3:s0,s1,s2; // encode Q
labels 0:; 1:s2,s3; 2:; 3:s2; // encode Qf
init 0,1;
transitions (0,{a},,1); (0,{},,2); (1,{},,3); (3,{a},,3); (3,{},,3);
accept 2,3;
Solution :
labels 0:s0,s3; 2:s1,s3; 3:s2; 1:; 4:s0; // encode Q
labels 0:; 2:s1; 3:s2; 1:; 4:; // encode Qf
init 0;
transitions (0,{a},,1); (0,{},,2); (2,{},,3); (2,{a},,1); (3,{},,4); (3,{a},,1); (4,{},,2); (4,{a},,1); (1,{},,1); (1,{a},,1);
accept 2,3;
Please tell me where am I wrong?