I'm not entirely sure if this proof would suffice, but here's what I have,
$$\text{Show }n! \in O(n^n) \text{ but } n^n \notin O(n!).$$
Consider, $ c \geq\frac{|f(n)|}{g(n)}$ by Big O definition. Let $f(n) = n!$ and $g(n) = n^n \hspace{0.2cm}\forall n \geq 1$. Then $ c \geq \displaystyle{\lim_{n \to \infty}} \dfrac{|n!|}{n^n} = 0$. Next consider $f(n) = n^n$ and $g(n) = n!$. Then $ c \geq \displaystyle{\lim_{n \to \infty}} \dfrac{|n^n|}{n!} = \infty$. Hence, $n! \in O(n^n)$ but $n^n \notin O(n!)$ as required.
Is this acceptable?