Find the $LU$ factorization of the matrix: $$\begin{bmatrix} 1 & 1 & 1 \\ 3 & 5 & 6 \\ -2 & 2 & 7 \end{bmatrix}$$
I am aware that I need to find $L=\begin{bmatrix} 1 & 0 & 0 \\ * & 1 & 0 \\ * & * & 1 \end{bmatrix}$ and $U=\begin{bmatrix} 1 & * & * \\ 0 & 1 & * \\ 0 & 0 & 1 \end{bmatrix}$
I did row transformations and got $U=\begin{bmatrix} 1 & 1 & 1 \\ 0 & 2 & 3 \\ 0 & 0 & 3 \end{bmatrix}$ but I couldn't understand how to find $L=\begin{bmatrix} 1 & 0 & 0 \\ * & 1 & 0 \\ * & * & 1 \end{bmatrix}$
Can anyone explain how to find $L$

Going off of GBes's comment, you can find $L$ through some quick matrix multiplication. Let's call the original matrix $A$. We know that $A=LU$, and since you have $U$ (which is invertible), you can multiply by $U^{-1}$ on the right on both sides to get the following: $$\begin{align} A&=LU \\ AU^{-1}&=LUU^{-1} \\ AU^{-1}&=L\end{align}$$