I got a SLE represented by this augmented matrix $$ \begin{bmatrix} 1 & 1 & -k & h \\ 1 & 2 & 1 & 2 \\ -2 & 1 & 1 & 2 \\ \end{bmatrix} $$
I reduced it to this by applying row operation: $$ \begin{bmatrix} 1 & 0 & -k-3/5 & -1+h \\ 0 & 1 & k+1 & -h+2 \\ 0 & 0 & 1 & (5h-25/3)/(-5k-4) \\ \end{bmatrix} $$
I now have 3 "leading ones", how to conclude which values of k and h yield infinite solutions, a unique solution, and no solution?
Note: condition for this to apply is $k≠4/5$
For problems like this, I like to push the unknown coefficients as far to the bottom of the matrix as I can to keep the intermediate computations simpler and avoid having to deal with potential zero divisions along the way. Rearranging rows in this way corresponds to reordering the equations, which obviously doesn’t affect the system’s solution.
Here, we’re lucky and the two unknowns are in the same row, so start the row-reduction from $$\begin{bmatrix}1&2&1&2\\-2&1&1&2\\1&1&-k&h\end{bmatrix}$$ instead. Eventually, you’ll reach $$\begin{bmatrix}1&2&1&2\\0&5&3&6\\0&0&-\left(k+\frac25\right)&h-\frac45\end{bmatrix}.$$ From that we can readily see that there is an infinite number of solutions when $k=-\frac25$ and $h=\frac45$, no solution when $k=-\frac25$ but $h\ne\frac45$, and a unique solution otherwise.