Read or watch:
You will be asked to write files containing big O notations. Please use this format:
O(1)
O(n)
O(n!)
- n*m ->
O(nm)
- n square ->
O(n^2)
- sqrt n ->
O(sqrt(n))
- log(n) ->
O(log(n))
- n * log(n) ->
O(nlog(n))
- …
Read or watch:
You will be asked to write files containing big O notations. Please use this format:
O(1)
O(n)
O(n!)
O(nm)
O(n^2)
O(sqrt(n))
O(log(n))
O(nlog(n))