Hey all,
I feel bad about asking a question so simple, but I can't figure this out for the life of me. I need to construct a NFA based on some languages, and the only one I can't figure out is this one:
L = (10)*
Note that I am not asking for any help concerning the FSM, but only some clarification on what the language represents. Most of the other languages were presented to me in a more understandable fashion:
L = {w | w contains an even number of 0's }
I'm thinking it's just a regular expression, and after some perusing of the regex cheat sheet, my only guess is that it matches for the group 10
0 or more times, but that clearly doesn't seem right because everything would match.
Any help is greatly appreciated.