Google interview question

What IS Big O?

Interview Answers

Anonymous

10 Oct 2012

In general, Big-O is used to indicate how something scales with the problem size. The most common usage is for time taken by an algorithm, but it could also measure the memory used by that algorithm vis-a-vis the problem size.

7

Anonymous

6 Oct 2012

Maximum amount of time a correct algorithm may need to solve a problem

1