Asked by: Zoha Tazmen

What is the Big O notation?

Answers (2)

Big O notation is used to describe the performance or complexity of an algorithm. It specifically represents the upper bound of the time or space complexity as the input size increases. Common complexities include O(1) (constant time), O(n) (linear time), O(log n) (logarithmic time), and O(n^2) (quadratic time).

Answered by: Zoha Tazmen

ok

Answered by: Zoha Tazmen

Zoha Tazmen:

yes

Zoha Tazmen:

ok

Your Answer