I've got this problem from a contest training that was held today at my school, the competition is not ongoing, in fact I will provied here the link to the solutions: Problem's solutions
That being said, I felt the solution to one of the problems was kinda lame since it relied on you knowing the theory behind Catalan numbers, the problem is the following:
How many sequences are there, such that $a_i\ge 0 ,\forall i $, $a_0=a_{18}=0$ and $a_i=a_{i-1}\pm1$ $\forall 1\le i\le 18$
My attempt: I didn't get very far in this one, I drew a table with 19 blank spots, put a zero at the beginning, one at the end, and then tought I could just use simple permutations (Basically count the number of sequences just by counting the number of ways there are to put eight "+1's" and eight "-1's" and divide by the permutation of the repeated elements, so $\frac{16!}{8!\cdot 8!}$, then I remembered that $a_i \ge 0$ for all $i$ condition, and got stuck, I tought I could maybe use engineer's induction (analyze small cases) but I decided to just move onto other problems, any insight on this one is much appreciated.
Also, the answer according to the solutions is the nineth catalan number, $C_9=\frac{1}{10}{18 \choose 9}=4862$

This is a tough problem, and I imagine there is no way to solve it without some prior knowledge of the Catalan numbers.
For each $1\le i\le 18$, let $d_i=b_i-b_{i-1}$, so that $b_i=d_1+d_2+\dots+d_{i}$. Each $d_i=\pm1$. Now, consider the list of $19$ numbers $$ (1,d_1,d_2,\dots,d_{18})\tag{$*$} $$ Since each $b_i\ge 0$, each partial sum $1+d_1+\dots+d_i$ of this list is strictly positive, and the sum of the entire list $1+d_1+\dots+d_{18}$ is equal to $1$.
How many ways are there to choose such a list $(*)$ of $19$ numbers, all equal to $\pm1$, whose sum is $1$? Well, clearly there must be exactly $9$ numbers which are $+1$ and $8$ which are $-1$. The number of sequences would then be $\binom{19}{10}$. However, this is ignoring the condition that all partial sums must be positive. We now appeal to this result.
Since there are $\binom{19}{10}$ lists of $\pm1$ whose sum is $1$, and exactly $1$ out of $19$ of those lists have all partial sums positive, it follows that the number of lists like $(*)$ is $$ \frac1{19}\binom{19}{10}=\frac1{10}\binom{18}9. $$
I leave it to you to prove the Lemma.