Skip to content

Instantly share code, notes, and snippets.

@abruckman
abruckman / BigO.md
Last active March 17, 2017 18:44
Big O Notation - Whiteboarding Wednesday

Big O Notation

How can we measure quality of code?

  • Readability - How easily can we tell what you were trying to make?
  • Time - How long does it take to run?
  • Space - How much data do you have to store to run your code?
  • Lines of code

Time example