First, we can check the time needed to complete the following algorithm class:
- O(N) -> say it requires 1 second to process N=100
- O(N^3) -> 3 nested loops -> now requires N^3=1000000/100 * 1_second = 10000 seconds = ~ 3 hours
- O(2^N) -> N levels (binary tree) of computations -> 2^N = 1.26e+30 seconds
- O(n!) -> N levels (of increasing branches, 1x2x3x...xN) of computations -> 9.332622e+157 seconds