Consider the following $7 \times 7$ matrix. Every unfilled entry is a $0$. What's the rank of this matrix?
$$ \begin{bmatrix} & 1 & & & & & \\ 2 & & 2 & & & & \\ & 3 & & 3 & & & \\ & & 4 & & 4 & & \\ & & & 5 & & 5 & \\ & & & & 6 & & 6 \\ & & & & & 7 & \end{bmatrix} $$
If we solve it using brute force, that is, by multiplying the scalars $c_1, c_2, \cdots, c_7$ to the column vectors and equating with $0$, we can get the rank. But is there any better way to do this? Looking at the pattern, I feel, there is.