Please order the function belows by growth rate from fastest to slowest:
- n^10
- 2^n
- nlog(n)
- 10^6
And my answer is:
- 2^n
- n^10
- nlog(n)
- 10^6
Is my answer correct?
feedback
|
|
That seems about right. As way of education, consider what happens when you feed in different
So, in terms of how fast they grow, you're list is correct.
| ||||
|
feedback
|