I am trying to teach myself modular arithmetic to solve a programming challenge. Basically it needs to solve this kind of system of modular equation,
\begin{align*} 2444 = 960x \pmod{2618} \end{align*}
except the number is very large.
I know the basic concept of modulo but that is it, I don't even know the term to search on google to help solve me this.
How do you solve for $x$?