Skip to content

Latest commit

 

History

History
19 lines (19 loc) · 657 Bytes

File metadata and controls

19 lines (19 loc) · 657 Bytes

#Big-O-Notation-using-matplotlib Big-O notation graph using matplotlib, numpy and math module of Python.

| Big-O | NAME |

| 1 | constant |

| log(n) | logrithmic |

| n | linear |

| nlog(n) | log linear |

| n^2 | Quadratic |

| n^3 | cubic |

| 2^n | exponential |