I have come across many forums where they state that the language represented by
L={WWR|WR is the reverse of W and W belongs to (0,1)*}
is NOT REGULAR. And it has been proved by pumping lemma as well.
BUT I am able to write a REGULAR EXPRESSION FOR THIS, where I use the same logic as given in this link.
CHECK THIS:
(0+1) * 11 (0+1) * + (0+1) * 00 (0+1) *
Is there any flaw in logic? Or something that I maybe missing. Thanks in advance :)