Given $$A = \pmatrix{2 & 0 & -1 & \\ -1 & 1 & 1 \\ -1 & 0 & 1}$$ and $$A^{-1} = \pmatrix{1 & 0 & 1 & \\ 0 & 1 & -1 \\ 1 & 0 & 2}$$ I want to use the Sherman-Morrison Formula to determine $A^{-1}$ if we update $A$ so that the $a_{32}$ element is $2$. In other words, now $$A = \pmatrix{2 & 0 & -1 & \\ -1 & 1 & 1 \\ -1 & 2 & 1}$$
I've seen how to do this for $2\times2$ matrices, but I cannot seem to figure out how to do this for $3 \times 3$ matrices.
Note: I believe the answer is the following: $$\pmatrix{1 & 2 & -1 & \\ 0 & -1 & 1 \\ 1 & 4 & -2}$$