As pointed out you need to order the rows and columns properly so that adjacent cells differ only in one variable. If your labeling is correct you need to swap the rightmost two columns for this (then of course it's customary to order the columns 00, 01, 11 and 10, but that's not necessary for the working of the diagram).
If it's just a typo in the labeling and the table is indeed correct you will have fx:
$\begin{matrix}
& BC & C && B \\
A & 0 & 1 & 1 & 0\\
& 1 & 1 & 0 & 1\\
\end{matrix}$
Now you can find four groupings of two cells (which are prime implicants), the the terms are $A\overline B+C\overline B+C\overline A+B\overline A$. Next step is to identify the essential implicants which is $A\overline B$ (because it's the only one covering $A\overline B\overline C$) and $B\overline A$ (because it's the only one covering $\overline AB\overline C$. The other two terms/groups are not essential, but one of them has to be choosen - there's no reason to choose one over the other so you can just pick one of:
$A\overline B+C\overline A+B\overline A$
$C\overline B+C\overline A+B\overline A$
The way you went wrong is first when you went for the red group second. Normally you go for essential prime implicants first (which will mean that they don't have a matching neighbor outside the group). The second error is that you should always aim for the largest possible groups (that is prime implicants) - even if you allowed the first error to slip you will anyway have to use a group of two for the hanging 1.
You will have a hanging one anyway if you do it correctly:
$\begin{matrix}
& BC & C && B \\
A & 0 & \color{red}1 & \color{red}1 & 0\\
& \color{green}1 & 1 & 0 & \color{green}1\\
\end{matrix}$
now the black one could be combined with either its red or green neighbor and since it can it should to be combined.