Skip to content

Commit 17cdfdb

Browse files
authored
Merge pull request #17 from torwig/fix_typo_complexity
Fix typo in the factorial complexity notation
2 parents c4d1a2a + f501d79 commit 17cdfdb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1320,7 +1320,7 @@ There are a huge number of Linux distributions (preinstalled software bundles) t
13201320
> - Linearimetric O(n \* log n) <br>
13211321
> - Quadratic O(n^2) <br>
13221322
> - Stepwise O(2^n) <br>
1323-
> - Factorical O(!n) – the slowest. <br>
1323+
> - Factorial O(n!) – the slowest. <br>
13241324
- [Time complexity](https://en.wikipedia.org/wiki/Time_complexity)
13251325
> When you know in advance on which machine the algorithm will be executed, you can measure the execution time of the algorithm. Again, on very good hardware the execution time of the algorithm can be quite acceptable, but the same algorithm on a weaker hardware can run for hundreds of milliseconds or even a few seconds. Such delays will be very sensitive if your application handles user requests over the network.
13261326
- [Space complexity](https://en.wikipedia.org/wiki/Space_complexity)

0 commit comments

Comments
 (0)