Big O Notation

  • O(1) = O(yeah)

  • O(log n) = O(nice)

  • O(n) = O(ok)

  • O(n²) = O(my)

  • O(2ⁿ) = O(no)

  • O(n!) = O(mg!)

FreeCodeCamp has a 2 hours course about it.

Last updated