I'd like some help on how to transform a grammar to LL(1) using factoring. Possibly other techniques but I have already used left recursion For example I have the question
S--> 1X1F|2X2F|1X
X--> 1X|0
F--> 0F|ε
ε denotes a termination without another letter.
I appreciate any help