mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-24 18:11:38 +00:00
formatting - removed italics
This commit is contained in:
parent
4380245292
commit
26c7b45feb
@ -97,9 +97,9 @@ g(n) = n
|
|||||||
```
|
```
|
||||||
|
|
||||||
is f(n) O(g(n))?
|
is f(n) O(g(n))?
|
||||||
is 3*n^2 O(n)?
|
is 3 * n^2 O(n)?
|
||||||
Let's look at the definition of Big-Oh.
|
Let's look at the definition of Big-Oh.
|
||||||
3*n^2 <= c * n
|
3 * n^2 <= c * n
|
||||||
Is there some constant c that satisfies this for all n?
|
Is there some constant c that satisfies this for all n?
|
||||||
No there isn't, f(n) is NOT O(g(n)).
|
No there isn't, f(n) is NOT O(g(n)).
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user