Build finite automata that accept the language: the alphabet $\{0, 1\}$, the set of non-empty words whose first letter occurs at least two other times. Automata can be non-deterministic if that makes it easier for you. However, you cannot use transitions labeled with a regular expression or the empty word $\epsilon$.
I made this finite automata, but it seems to be wrong. Can you tell me what would be a good automata for this exercise?
EDIT

