A combinatorial proof of the identity $\sum\limits_{k=0}^nk^2 {n \choose k}^2 = n^2 {2n - 2 \choose n- 1}$
The left hand side counts, for each $k$, the number of ways you can choose $k$ boys and $n-k$ girls to form a team. Among these $k$ boys there are $k$ ways to choose the boy leader. There are $k$ ways to choose a girl supervisor from the $k$ girls that are not on the team.
Okay, let's look at RHS: $n^2 { 2n-2 \choose n-1 }$
Suppose we have $2n$ balls, of which $n$ are black and $n$ are white. We want to choose $n+1$ balls in total, but we do it as follow: We have $2$ boxes. In first box, we put exactly $2$ balls, one black, one white, which can be done in $n^2$ ways. The rest goes in exactly ${ 2n-2 \choose n-1}$ ways ( we don't bother about colours for the second box).
Now LHS: $\sum_{k=1}^n k^2 {n \choose k} {n \choose n-k}$ (note I start the sum from $1$ (since it is $0$ for $k=0$ ) )
Assume that in those $n+1$ balls we want to pick exactly $k$ black balls $k \in \{1,...,n\}$ ( it cannot be $n+1$, since we must have at least one white ball). So there is exactly ${n \choose k}$ ways to pick those $k$ black balls, and ${n \choose n-k}$ to pick white balls. Now we have $n$ balls in the second box, we choose one of black balls from there ($k$ ways) and put it in the first box. Now we have $1$ black ball in the first box, and $n-1$ balls in second box. Note that we choosed $n-k$ white balls, so exactly $k$ hasn't been chosen yet, so we can choose one of them to be in the first box in exactly $k$ ways. So that we get $k^2 {n \choose k} { n \choose n-k}$. Now sum $k \in \{1,...,n\}$
Vandermonde and some basic identities also work:
$$
\begin{align}
\sum_{k=0}^nk^2\binom{n}{k}^2
&=\sum_{k=0}^nk(k-1)\binom{n}{k}^2+\sum_{k=0}^nk\binom{n}{k}^2\tag1\\
&=n(n-1)\sum_{k=0}^n\binom{n-2}{k-2}\binom{n}{n-k}+n\sum_{k=0}^n\binom{n-1}{k-1}\binom{n}{n-k}\tag2\\
&=n(n-1)\binom{2n-2}{n-2}+n\binom{2n-1}{n-1}\tag3\\[3pt]
&=(n-1)^2\binom{2n-2}{n-1}+(2n-1)\binom{2n-2}{n-1}\tag4\\[3pt]
&=n^2\binom{2n-2}{n-1}\tag5
\end{align}
$$
Explanation:
$(1)$: $k^2=k(k-1)+k$
$(2)$: $k(k-1)\binom{n}{k}=n(n-1)\binom{n-2}{k-2}$ and $k\binom{n}{k}=n\binom{n-1}{k-1}$
$(3)$: Vandermonde Identity
$(4)$: $n\binom{2n-2}{n-2}=(n-1)\binom{2n-2}{n-1}$ and $n\binom{2n-1}{n-1}=(2n-1)\binom{2n-2}{n-1}$
$(5)$: $(n-1)^2+(2n-1)=n^2$