L= { w is {1,2,3}*
| w starts with 3, ends with 2 and there is a substring of only 1 with length
even equal or >2}.
So result of some tests must be:
3323112: accepted
311211112: non accepted
31112: non accepted
32: non accepted
2113: non accepted
313212: non accepted
My answer is : 3*(11)*2*
But it fails some tests... Can someone help me?
The 2nd exercise is :
L= { w is {1,2}*
| in w after every 1 there is one or more 2, but if the 1 is the last
character it could be the last (no 2 after it)}
Test strings:
1: accepted
222: accepted
221212122: accepted
1222121: accepted
111221: not accepted
11: not accepted
My solution is (12*)*
But it fails some tests... Help me please.
311211112rejected in the first exercise? It satisfies all the conditions you listed (starts with 3, ends with 2, and contains a sequence of 1s with even length). – Mark Byers Oct 29 '11 at 13:03