From cb8c89c20610860c7515381206c8936aeca5c05c Mon Sep 17 00:00:00 2001 From: z3rOR0ne Date: Mon, 11 Nov 2024 19:01:10 -0800 Subject: [PATCH] :memo: Made further notes on algos --- big_o_cheatsheet.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/big_o_cheatsheet.md b/big_o_cheatsheet.md index ec79a19b..2f5098b8 100644 --- a/big_o_cheatsheet.md +++ b/big_o_cheatsheet.md @@ -301,3 +301,7 @@ $$ O(n^3) $$ **Exponential:** $$ O(2^n) $$ + +## Order of Types of Time Function + +$$ 1 < log(n) < \sqrt n < n < n(log(n)) < n^2 < n^3 < ... 2^n < 3^n .... < n^n $$