Intuitively, it seems that $n! = o(n^n)$. We can associate each value in the factorial with a single $n$ to divide by, so $\lim_{n \rightarrow \infty} \frac{n!}{n^n}$ seems to be $0$.
However, I think I have encountered a contradiction. It turns out that $\log(n!) = \Theta(n\log{n})$ (which we can show with Stirling's approximation) or $\log(n!) = \Theta(\log{n^n})$. The log function is strictly increasing, so we can just remove them, so that means that $n! = \Theta(n^n)$, which goes against my earlier hunch of $n! = o(n^n)$.
I must be missing something, right?