\begin{cases}E\equiv -1 \pmod{5}\\ E\equiv 3 \pmod{6} \\E\equiv 0 \pmod{7} \\E\equiv 1 \pmod{8} \\E\equiv 0 \pmod{9}\end{cases}
Answer: 1449
I was given an egg basket puzzle asking for the number of eggs in the basket, the puzzle translates to the above system of linear congruences.
I solved it by brute force using Linear Diophantine Equations, but I think there is a quicker, more clever way to solve this problem since it's supposed to be a puzzle and not strictly a math question.
You might notice that $E=9$ is a solution to all the congruences except the middle one. The $\mbox{lcm(5,6,8,9)} = 360,$ so now you have the system
$$E\equiv 9 (\bmod{360})$$ $$E\equiv 0 (\bmod{7})$$
You need $360k +9 $ to be a multiple of $7$, so reduce mod $7$ to get
$$360k+9 \equiv 3k +2 (\bmod{7})$$
which has solution $k=4$. Final answer $360\cdot 4 +9 = 1449$.