I would like to verify if i have the good approach to this problem, while looking at my solution it seems ok but i am not sure. Thank you.
I am using this tool to draw if you wanna help out : http://madebyevan.com/fsm/
Here's the question :
Build a finite automata ( it can be deterministic or not) that accept this language on the alphabet $\{0,1\}$ :
$$L=\{w : w \neq 11 \text{ and } w \neq 101 \}$$
In other words, L includes all sequences except 11 and 101
Here's what i tried :