Which Big-O grows faster asymptotically
问题 I have gotten into an argument/debate recently and I am trying to get a clear verdict of the correct solution. It is well known that n! grows very quickly, but exactly how quickly , enough to "hide" all additional constants that might be added to it? Let's assume I have this silly & simple program (no particular language): for i from 0 to n! do: ; // nothing Given that the input is n , then the complexity of this is obviously O(n!) (or even ϴ(n!) but this isn't relevant here). Now let's