DEV Community

Discussion on: The Big O Notation - An Introduction

Collapse
 
dr_dimaka profile image
Dmitry Pavlov

A bit easier way to explain #BigONotation :)
twitter.com/dr_dimaka/status/11555...

Collapse
 
rockykev profile image
Rocky Kev
Pranay Pathole @PPathole · Jul 28
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!)
Enter fullscreen mode Exit fullscreen mode

LOL!