Skip to content

Instantly share code, notes, and snippets.

@cbandara
Created January 18, 2020 22:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cbandara/4167605e1703faaf01acee11daeff538 to your computer and use it in GitHub Desktop.
Save cbandara/4167605e1703faaf01acee11daeff538 to your computer and use it in GitHub Desktop.
Big O drills
1: Constant time algorithm 0(1)
2: Polynomial 0(n^2)
3: Linear 0(n)
4: Linear 0(n)
5: Polynomial 0(n^2)
6: Linear 0(n)
7: Logarithmic 0(log n)
8: constant 0(1)
9: linear 0(n)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment