I have to create a PDA(pushdown automata) that accepts strings that not of the form $ww^R$.
For example it accepts 0011, 1100, 11000 but not accepts 1001, 011110, 0110.
How can I create this PDA? I know the answer of not accepting $ww$, but can't get an insight to make this one.
I would appreciate if you let me know the answer or nice hint to make it.