Sign Up
∑ = {0, 1}
Answer:
L = {001, 100001, 11001, …..}
Regular Expression = (0 + 1)*001
Grammar:
S → 0A | 1S
A → 0B | 1S
B → 1B | 1C
C → 0A | 1S | λ