Give a regular expression for the language of all strings over $\{0,1\}^*$ not ending in $01$.
$\in | 0 | 1 | (0|1)^* | (11|00|10)$
The solution above was provided by my professor but I'm not convinced that it is correct. Would the $(0|1)^*$ be any sting over the alphabet $\{0,1\}^* $and therefore could end in $01$. I think that is should be $(0|1)^*(11|00|10)$. Am I correct or am I missing something?
