Use the Euclidean algorithm to express $\text{gcd}(330, 156)$ as a linear combination of $330$ and $156$.
My working so far is as follows:
$330 = 2\times156 +18$
$156= 8\times18+12$
$18=1\times12+6$
$12=2\times6+0$
therefore, $\text{gcd}(330,156) =6$.
Rearranging the equations
$18= 330-156\times2$
$12=156-8\times18$
$6=18-1\times12$
$0=12-2\times6$
I have tried to utilise the back substitution method but truth be told, finding myself totally lost and confused by it; not to mention making numerous errors.
Just keep expressing the remainders as expressions involving the other numbers in your algorithm steps. So \begin{align} 6&=18-12\cdot 1\\ &=18-(156-8\cdot18)\cdot1\\ &=9\cdot 18-156\\ &=9\cdot(330-2\cdot156)-156\\ &=9\cdot330-19\cdot156. \end{align}
So, in the equation $330x+156y=6$; we have $x=9$ and $y=-19$.