Skip to content

Latest commit

 

History

History
11 lines (6 loc) · 272 Bytes

bigO.md

File metadata and controls

11 lines (6 loc) · 272 Bytes

Big O notes

With big O we express runtime in terms of how quickly it grows relative to the input as the input gets arbitrarily large.

Broken down it looks like this:

  1. How quickly the runtime grows.

  2. Relative to the input.

  3. As the input gets arbitrarily large.