From 0d31843dcfd0268b07d2b9a0f77f3fbc53e5bbb8 Mon Sep 17 00:00:00 2001 From: Pragy Agarwal Date: Thu, 10 Oct 2019 16:22:29 +0530 Subject: [PATCH] Update image size We can use raw html tags and styles --- Recursion.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Recursion.md b/Recursion.md index 1118a98..084c210 100644 --- a/Recursion.md +++ b/Recursion.md @@ -50,7 +50,8 @@ def pow(n, k): Why not f(n, k/2) * f(n, k/2+1) in the else condition? To allow reuse of answers. -![IMG_0034](https://user-images.githubusercontent.com/35702912/66316190-d30e1f00-e934-11e9-8089-85c6dc69baa7.jpg) + + _Time Complexity_ (assuming all multiplications are O(1))? $O(\log_2 k)$