Big O Notation
↔ (equation) to express Order Of Complexity for Algo as # inputs vs data points scale
Order Of Complexity
of difficulty to scale Algo inputs vs time/space
O(1)
constant Order Of Complexity always same for 1 input - not matter how large
O(n2)
Order Of Complexity to scale exponentially to power of 2
Growth Rate of complexity