Skip to content

Instantly share code, notes, and snippets.

@rponte
Created July 28, 2019 19:28
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 rponte/214a30a92c8106beacffaf6a625775eb to your computer and use it in GitHub Desktop.
Save rponte/214a30a92c8106beacffaf6a625775eb to your computer and use it in GitHub Desktop.
Alternative Big O notations
  • O(1) = O(yeah)
  • O(log n) = O(nice)
  • O(nlogn) = O(k-ish)
  • O(n) = O(ok)
  • O(n²) = O(my)
  • O(2ⁿ) = O(no)
  • O(n^n) = O(fuck)
  • O(n!) = O(mg!)
@rponte
Copy link
Author

rponte commented Jul 28, 2019

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment