AFAIK, you have to do the solving yourself.

But at least you can still get Mathematica to do the computation...
The whole problem boils down to finding the modular inverse of
11, modulo
360. That is, the number
a such that
11a = 1 (mod 360).
Mathematica might have a modular inverse function.
If not, the normal way to compute modular inverses is through the extended Euclidean algorithm for GCD's... Mathematica ought to have that!
This algorithm gives you the numbers
u and
v such that
11u + 360v = 1, so
u is easily seen to be the inverse of
11 modulo
360. (Of course, this only works because
GCD(11, 360) = 1)
If Mathematica doesn't have
that, I think the easiest solution is to write a function that implements the extended Eucllidean algorithm.
But if you really don't want to, you could still manage something with modular exponentiation, since:
11^EulerPhi[360] = 1 (mod 360)
so you can spend a little bit of time figuring out the possibilities for things which
11a = 1 (mod 360).
(the Carmichael lambda function is better to use than the EulerPhi function, but I don't know if Mathematica has that)